The bundles endpoint allows you to create and manage bundles of account resources.
Provisioning API (1.2.7)
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 server
https://provisioning.api.sinch.com/v1/projects/{projectId}/rcs/activities
- 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}/rcs/activities?pageToken=string&pageSize=1' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
Response for all account activities.
{ "totalSize": 2, "pageSize": 50, "notifications": [ { … }, { … } ] }
Path
Bodyapplication/jsonrequiredThe unique ID of the project. You can find this on the Sinch Dashboard.
Comment data
- Production server
https://provisioning.api.sinch.com/v1/projects/{projectId}/rcs/comments
- 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}/rcs/comments' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"comment": "Example comment."
}'Response
application/json
Response when successfully creating a comment.
{ "type": "CREATED", "comment": "Example comment", "created": "2023-01-19T13:11:08.204Z" }