The bundles endpoint allows you to create and manage bundles of account resources.
Provisioning API/API Reference//
- Assign solution to project
List all solutions in project
Create solution for project
Get solution for project
Assign solution to projec...
Provisioning API (1.2.16)
Download OpenAPI description
Languages
Servers
Production server
https://provisioning.api.sinch.com/
WhatsApp Senders
A WhatsApp Sender is also referred to as a 'Business Profile' or a WhatsApp channel. The WhatsApp Sender endpoint allows you to create a Sender through Meta's Embedded sign up. A Sender must be provisioned for you as a consumer of the WhatsApp API to send messages to your end users.
Operations
Path
The unique ID of the project. You can find this on the Sinch Dashboard.
- Production serverhttps://provisioning.api.sinch.com/v1/projects/{projectId}/whatsapp/solutions/{solutionId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
'https://provisioning.api.sinch.com/v1/projects/{projectId}/whatsapp/solutions/{solutionId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
Response with assigned solution.
{ "id": "123", "details": { "name": "Test name" }, "ownerApp": { "id": 456, "name": "Test owner app name" }, "partnerApp": { "id": 789, "name": "Test partner app name" }, "assigned": true }
Path
The unique ID of the project. You can find this on the Sinch Dashboard.
- Production serverhttps://provisioning.api.sinch.com/v1/projects/{projectId}/whatsapp/solutions/{solutionId}/assign
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
'https://provisioning.api.sinch.com/v1/projects/{projectId}/whatsapp/solutions/{solutionId}/assign' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'