POST
/
v1
/
conversations
/
{convID}
/
saved-replies
Create saved reply
curl --request POST \
  --url https://api.wazapin.com/v1/conversations/{convID}/saved-replies \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "template": "<string>",
  "channel_scope": "<string>"
}
'
{
  "data": {
    "channel_scope": "<string>",
    "created_at": "<string>",
    "created_by": "<string>",
    "id": "<string>",
    "name": "<string>",
    "organization_id": "<string>",
    "template": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Session token or API key

Path Parameters

convID
string
required

Conversation ID

Body

application/json
name
string
required

Saved reply name

Minimum string length: 1
template
string
required

Saved reply template body

Minimum string length: 1
channel_scope
string

Optional channel scope ID

Response

OK

data
object
required