App
Create an app
You can create a new Conversation API app using the API. You can create an app for one or more channels at once. The ID of the app is generated at creation and will be returned in the response.
post/v1/projects/{project_id}/apps
Request body
Example request
{
"channel_credentials": [
{
"channel": "WHATSAPP"
}
],
"display_name": "Sinch Conversation API Demo App 001"
}Response
A successful response.
Example response
{
"channel_credentials": [
{
"channel": "WHATSAPP"
}
],
"display_name": "Sinch Conversation API Demo App 001",
"id": "{APP_ID}"
}