Skip to main content
POST
/
api
/
client
/
v2
/
comment-example
Create Comment Example
curl --request POST \
  --url https://prod-nginx-v2.goextrovert.com/webgateway/api/client/v2/comment-example \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "styleId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "text": "<string>"
}
'
{
  "status": "success",
  "data": {
    "id": "8d256aa6-9b12-49a7-93ee-bf41634b5b60"
  },
  "message": "Operation completed successfully"
}

Authorizations

X-API-Key
string
header
required

API Key for authentication

Body

application/json
styleId
string<uuid>
required

ID of the Style this CommentExample will be attached to.

text
string
required

Text of the example comment. Up to 1250 characters, must be non-blank.

Response

status
enum<string>
required

Response status

Available options:
success
data
object
required
message
string
required

Success message

Example:

"Operation completed successfully"