curl --request GET \
--url https://api.wapikit.com/api/organization
{
"organizations": [
{
"uniqueId": "<string>",
"name": "<string>",
"description": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"websiteUrl": "<string>",
"logoUrl": "<string>",
"faviconUrl": "<string>",
"businessAccountId": "<string>",
"whatsappBusinessAccountDetails": {
"businessAccountId": "<string>",
"phoneNumberId": "<string>",
"accessToken": "<string>",
"webhookSecret": "<string>",
"verificationStatus": "Verified",
"isPhoneNumberRegisteredToCloudApi": true
},
"IsAutoHandlingConversationsEnabled": true,
"isOnboardingCompleted": true
}
],
"paginationMeta": {
"page": 123,
"per_page": 123,
"total": 123
}
}
returns all organizations
curl --request GET \
--url https://api.wapikit.com/api/organization
{
"organizations": [
{
"uniqueId": "<string>",
"name": "<string>",
"description": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"websiteUrl": "<string>",
"logoUrl": "<string>",
"faviconUrl": "<string>",
"businessAccountId": "<string>",
"whatsappBusinessAccountDetails": {
"businessAccountId": "<string>",
"phoneNumberId": "<string>",
"accessToken": "<string>",
"webhookSecret": "<string>",
"verificationStatus": "Verified",
"isPhoneNumberRegisteredToCloudApi": true
},
"IsAutoHandlingConversationsEnabled": true,
"isOnboardingCompleted": true
}
],
"paginationMeta": {
"page": 123,
"per_page": 123,
"total": 123
}
}
number of records to skip
max number of records to return per page
sorting order
asc
, desc
organizations list
The response is of type object
.
Was this page helpful?