POST /v1/ticket
Create ticket using data specified in the request body
Name
Value
Parameter
Description
{
"description": "sample description",
"subject": "sample subject",
"type": "inquiry",
"email": "sample@email.com",
}curl --location 'https://relay.sspwallet.io/v1/ticket' \
--header 'Content-Type: application/json' \
--header 'X-Challenge: sample' \
--header 'X-Forwarded-For: 103.0.113.165' \
--data-raw '{
"description": "sample description",
"subject": "sample subject",
"type": "inquiry",
"email": "sample@email.com"
}'Last updated