Support
Add message to support request (API key auth)
Add a message to a support request, verifying the ticket belongs to the external user
Add message to support request (API key auth)
Add a message to a support request, verifying the ticket belongs to the external user
POST https://api.appgram.dev/api/v1/support-requests/{id}/messages/user/{externalUserId}
curl --request POST \
--url https://api.appgram.dev/api/v1/support-requests/{id}/messages/user/{externalUserId} \
--header 'Content-Type: application/json' \
--data '{
"attachments": [
{
"mime_type": "string",
"name": "string",
"size": 0,
"url": "string"
}
],
"content": "string",
"help_article_ids": [
"string"
],
"is_internal": true
}' Path parameters
id string path required Support request ID
externalUserId string path required External user ID
Body
application/jsonattachments array content string required help_article_ids array Help center articles to natively attach as rich cards
is_internal boolean Only for support team
curl --request POST \
--url https://api.appgram.dev/api/v1/support-requests/{id}/messages/user/{externalUserId} \
--header 'Content-Type: application/json' \
--data '{
"attachments": [
{
"mime_type": "string",
"name": "string",
"size": 0,
"url": "string"
}
],
"content": "string",
"help_article_ids": [
"string"
],
"is_internal": true
}'