APIs to onboard and manage company.
curl -i -X PUT \
'https://apis.spotnana.com/v2/companies/4974a66b-7493-4f41-908c-58ba81093947/color-config?companyRole=TMC' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"profileColors": [
{
"title": "PROFILE_TIER_MEMBER_COLOR",
"color": "#FF0000"
}
]
}'
curl -i -X GET \
'https://apis.spotnana.com/v2/companies/4974a66b-7493-4f41-908c-58ba81093947/color-config?companyRole=TMC' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "profileColors": [ { … } ] }