Back to Collection Items
<?php
$http->AuthToken = '<access_token>';$success = $http->QuickGetSb('https://domain.com/crm/v2.1/Sales_Orders/{{record_id}}/Notes',$sbResponseBody);
?>
Curl Command
curl -X GET
-H "Authorization: Bearer <access_token>"
https://domain.com/crm/v2.1/Sales_Orders/{{record_id}}/Notes
Postman Collection Item JSON
{
"name": "Notes",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{api-domain}}/crm/v2.1/Sales_Orders/{{record_id}}/Notes",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Sales_Orders",
"{{record_id}}",
"Notes"
]
},
"description": "To get the Notes associated with a Sales Order."
},
"response": [
]
}