curl --request POST \
--url https://your-instance.example.com/api/organizations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"phoneNumber": "<string>",
"adminDetails": {
"email": "<string>",
"password": "<string>",
"fullName": "<string>",
"phoneNumber": "<string>",
"designation": "<string>",
"sinchPhoneNumber": "<string>"
},
"address": "<string>",
"creds": {
"anthropicApiKey": "<string>",
"sinchServicePlanId": "<string>",
"sinchApiToken": "<string>",
"sinchMmsApiKey": "<string>",
"sinchMmsServiceId": "<string>"
}
}
'