Create a ticket¶
Parameters¶
HTTP method |
Access rights |
URL | Parameters |
Note |
---|---|---|---|---|
POST | manage_tickets | https://api.admitad.com/tickets/create/ |
Parameter request list |
|
* Returns the result in the JSON format.
Parameter request list¶
Name |
Type |
Required |
Allowed values |
Description |
---|---|---|---|---|
subject | string | ✔ | Subject |
|
text | string | ✔ | Text |
|
advcampaign | integer | ✔ | List of affiliate programs | |
category | integer | ✔ | Category ID |
|
priority | integer | ✔ |
|
Example of use¶
Example of a request with utility ``curl``:
curl -L -H 'Authorization: Bearer access_token' -X POST https://api.admitad.com/tickets/create/ -d 'subject=Hdis&advcampaign=6&text=Some text&category=1&priority=1'
Example of the response from the API server in the JSON format:
{
"status": 1,
"category": {
"name": "FAQ",
"id": 1
},
"date_modified": "2014-09-12T22:34:45.809",
"text": "Some text",
"plain_text": "Some text",
"comments": [],
"priority": 1,
"date_created": "2014-09-12T22:34:45.795",
"id": 51,
"subject": "Hdis"
}