Skip to main content
POST
/
v2
/
support-tickets
cURL
curl --request POST \
  --url https://api.example.com/v2/support-tickets/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "INCORRECT_AMOUNT",
  "entities": [
    {
      "entity_type": "<string>",
      "entity_id": 1073741823
    }
  ],
  "ticket_type": "DISPUTE",
  "description": "<string>"
}
'
{
  "reason": "INCORRECT_AMOUNT",
  "entities": [
    {
      "id": 123,
      "entity_type": "<string>",
      "entity_id": 1073741823
    }
  ],
  "ticket_type": "DISPUTE",
  "description": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

reason
enum<string>
required
  • INCORRECT_AMOUNT - Incorrect Amount
  • WRONG_VEHICLE - Wrong Vehicle
  • DUPLICATE_CHARGE - Duplicate Charge
  • NOT_MY_TOLL - Not My Toll
  • ALREADY_PAID - Already Paid
  • OTHER - Other
Available options:
INCORRECT_AMOUNT,
WRONG_VEHICLE,
DUPLICATE_CHARGE,
NOT_MY_TOLL,
ALREADY_PAID,
OTHER
entities
object[]
required
ticket_type
enum<string>
  • DISPUTE - Dispute
  • SUPPORT - Support
  • INQUIRY - Inquiry
Available options:
DISPUTE,
SUPPORT,
INQUIRY
description
string

Response

201 - application/json
reason
enum<string>
required
  • INCORRECT_AMOUNT - Incorrect Amount
  • WRONG_VEHICLE - Wrong Vehicle
  • DUPLICATE_CHARGE - Duplicate Charge
  • NOT_MY_TOLL - Not My Toll
  • ALREADY_PAID - Already Paid
  • OTHER - Other
Available options:
INCORRECT_AMOUNT,
WRONG_VEHICLE,
DUPLICATE_CHARGE,
NOT_MY_TOLL,
ALREADY_PAID,
OTHER
entities
object[]
required
ticket_type
enum<string>
  • DISPUTE - Dispute
  • SUPPORT - Support
  • INQUIRY - Inquiry
Available options:
DISPUTE,
SUPPORT,
INQUIRY
description
string