Back to Collection Items
void ChilkatSample(void)
{
queryParams.UpdateString(L"type",L"all"); http.put_AuthToken(L"<access_token>"); success = http.HttpParams(L"GET",L"https://domain.com/crm/v2.1/Purchase_Orders/deleted",queryParams,resp);
}
Curl Command
curl -G -d "type=all"
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/Purchase_Orders/deleted
Postman Collection Item JSON
{
"name": "Purchase Orders",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Purchase_Orders/deleted?type=all",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Purchase_Orders",
"deleted"
],
"query": [
{
"key": "type",
"value": "all"
}
]
},
"description": "To get the list of available records in the Purchase Orders module."
},
"response": [
]
}