Skip to content
Wazapin
Esc
navigateopen⌘Jpreview

Create saved reply

POST/v1/conversations/{convID}/saved-replies
Authorization
bearerAuthbearerAuthrequired
or
apiKeyAuthapiKeyAuthrequired
Path parameters
convIDstringrequired
Conversation ID
Request body
requiredapplication/json
channel_scopestring
Optional channel scope ID
namestringrequired
Saved reply name
min length 1
templatestringrequired
Saved reply template body
min length 1
Responses
200OK
channel_scopestring | nullrequired
created_atstringrequired
created_bystringrequired
idstringrequired
namestringrequired
organization_idstringrequired
templatestringrequired
400Bad Request
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
401Unauthorized
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
403Forbidden
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
422Unprocessable Entity
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
500Internal Server Error
errorErrorBodyrequired
Show properties
codestringrequired
detailsErrorDetail[] | null
Show properties
Array of ErrorDetail
codestring
fieldstring
locationstring
messagestringrequired
messagestringrequired
request_idstring
Request
curl -X POST "/v1/conversations/string/saved-replies" \
  -H "Content-Type: application/json" \
  -d '{
  "channel_scope": "string",
  "name": "string",
  "template": "string"
}'
Response
{
  "channel_scope": "string",
  "created_at": "string",
  "created_by": "string",
  "id": "string",
  "name": "string",
  "organization_id": "string",
  "template": "string"
}