Customer
Create Customer Property
Create customer property
POST
/
customer
/
{id}
/
properties
Authorization
Path
Body
curl --request POST \
--url https://chat.zoko.io/v2/customer/{id}/properties \
--header 'Content-Type: application/json' \
--header 'apikey: <apikey>' \
--data '{
"description": "<string>",
"messages": [
"<string>"
],
"priority": 123,
"title": "<string>",
"type": "text"
}'
{
"details": "deleted items count - xx",
"message": "items(s) deleted",
"status": "204"
}
Authorizations
apikey
string
headerrequiredAuthentication is done via apikey
provided for your account
Include the following in your request header
apikey: "your_apikey_here"
Path Parameters
id
string
requiredID of customer
Body
application/json
description
string
details on the property
messages
string[]
url(s) for type image
, document
and video
. Text for type text
priority
integer
order in which it should be displayed on the web app
title
string
type
enum<string>
type of property
Available options:
text
, image
, document
, video
Response
200 - application/json
details
string
message
string
status
string
curl --request POST \
--url https://chat.zoko.io/v2/customer/{id}/properties \
--header 'Content-Type: application/json' \
--header 'apikey: <apikey>' \
--data '{
"description": "<string>",
"messages": [
"<string>"
],
"priority": 123,
"title": "<string>",
"type": "text"
}'
{
"details": "deleted items count - xx",
"message": "items(s) deleted",
"status": "204"
}