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