Time Allocations - Customers API
List all customers of a time allocation
List all customer organizations of a time allocation with a specific ID.
GET /time_allocations/:id/customers
Response
Status: 200 OK
[
{
"id": 44,
"sourceID": null,
"name": "Widget Data Center, External IT",
"parent": {
"id": 6,
"name": "Widget Data Center"
},
"manager": {
"id": 6,
"name": "Howard Tanner"
},
"created_at": "2016-03-22T21:02:50-05:00",
"updated_at": "2016-03-25T16:54:52-05:00"
},
{
"id": 50,
"sourceID": null,
"name": "Widget North America, Finance",
"parent": {
"id": 51,
"name": "Widget North America, Inc."
},
"manager": {
"id": 120,
"name": "Carolyn Goldrat"
},
"created_at": "2016-03-22T21:02:50-05:00",
"updated_at": "2016-03-22T21:03:36-05:00"
},
"..."
]
The response contains these fields by default.
Predefined Filters
The following predefined filters are available:
/time_allocations/:id/customers/disabled
: List all disabled customer organizations of a time allocation with a specific ID/time_allocations/:id/customers/enabled
: List all enabled customer organizations of a time allocation with a specific ID
Add an organization to a time allocation
Add a link between a time allocation with a specific ID and an customer organization with a specific ID.
POST /time_allocations/:id/customers/:organization_id
Response
Status: 200 OK
{}
Remove a customer from a time allocation
Remove the link between a time allocation with a specific ID and a customer organization with a specific ID.
DELETE /time_allocations/:id/customers/:organization_id
Response
Status: 204 No Content
Remove all customers from a time allocation
Remove all links between a time allocation with a specific ID and its customer organizations.
DELETE /time_allocations/:id/customers
Response
Status: 204 No Content