App
Update an app
Updates a particular app as specified by the App ID. Note that this is a PATCH operation, so any specified field values will replace existing values. Therefore, if you'd like to add additional configurations to an existing Conversation API app, ensure that you include existing values AND new values in the call. For example, if you'd like to add new channel_credentials, you can get your existing Conversation API app, extract the existing channel_credentials list, append your new configuration to that list, and include the updated channel_credentials list in this update call.
patch/v1/projects/{project_id}/apps/{app_id}
Query parameters
update_maskstring[]
The set of field mask paths.
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}"
}