URL: api/queue/get-form/{queueId}
Method: GET
Content-Type : application/JSON
Permission to: Admin Only
Keep In Mind: Please Provide an Authorization token in the Header to access
Description: Get Queue Details.
Parameters:
| Parameter | Type | Optional/Required | Description |
| queueId | integer | Required | queue id of the queue to be fetched. |
Success Response :
{
"success": true,
"data": {
"formDetails": [
{
"key": "driver",
"value": ""
},
{
"key": "host",
"value": ""
},
{
"key": "token",
"value": ""
},
{
"key": "project",
"value": ""
},
{
"key": "queue",
"value": ""
}
],
"driverName": "Iron"
}
}
}