Form
Last updated
Last updated
GET /api/v2/form HTTP/1.1
apiKey: YOUR_API_KEY
Accept: */*
POST /api/v2/form HTTP/1.1
apiKey: YOUR_API_KEY
Content-Type: multipart/form-data
Accept: */*
Content-Length: 29
{
"brand_id": 1,
"title": "text"
}GET /api/v2/form/{id} HTTP/1.1
apiKey: YOUR_API_KEY
Accept: */*
PUT /api/v2/form/{id} HTTP/1.1
apiKey: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 29
"brand_id=1&title='text'"DELETE /api/v2/form/{id} HTTP/1.1
apiKey: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 22
"description='text'"GET /api/v2/form/getFormForTicket?ticketID=1 HTTP/1.1
apiKey: YOUR_API_KEY
Accept: */*
PUT /api/v2/form/saveFormFields HTTP/1.1
apiKey: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 72
"ticketID=1&fields=[{'formFieldID':'text','formFieldValue':'text'}]"