/billing/groups/{billing_group}/breakdown
This call returns a breakdown of spending per-project for the billing group specified by billing_group
.
For each project that the billing group is associated with, information is shown on each task run, including its initiating user (the runner_username
), start and end times, and cost.
To find the billing_group
, use the call to list all your billing groups.
https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/billing/groups/{billing_group}/breakdown
Request
Example request
GET /v2/billing/groups/ec1dc1e3-12a3-4b56-789c-e3f2dca0c6f7/breakdown HTTP/1.1
Host: api.sb.biodatacatalyst.nhlbi.nih.gov
X-SBG-Auth-Token: 3259c50e1ac5426ea8f1273259740f74
curl -s -H "X-SBG-Auth-Token: 8ccc6222-ef6f-4526-99d7-9f56b716d43a" -H "content-type: application/json" - X GET "https://f4c-api.sbgenomics.com/v2/billing/groups/ec1dc1e3-12a3-4b56-789c-e3f2dca0c6f7/breakdown"
Header Fields
Name | Description |
---|---|
X-SBG-Auth-Token required | Your Platform authentication token. |
Path parameters
Name | Description |
---|---|
billing_group | The ID of the billing group. |
Query parameters
Name | Data type | Description |
---|---|---|
fields | string | Selector specifying a subset of fields to include in the response. |
Response
See a list of specific response codes that may be contained in the body of the response.
Example response body
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/billing/groups/ec1dc1e3-12a3-4b56-789c-e3f2dca0c6f7/breakdown",
"project_breakdown": [
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/projects/RFranklin/my_project",
"analysis_spending": {
"currency": "USD",
"amount": "0.23"
},
"task_breakdown": [
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/tasks/48f79ccf-12b3-45b6-789c-b1e8d88dabcd",
"runner_username": "Rfranklin",
"time_started": "2015-12-11T11:03:08Z",
"time_finished": "2015-12-11T11:08:49Z",
"task_cost": {
"currency": "USD",
"amount": "0.23"
}
}
]
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/projects/RFranklin/test",
"analysis_spending": {
"currency": "USD",
"amount": "0.92"
},
"task_breakdown": [
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/tasks/f386a3fb-123a-456b-78c9-648ce6969a37",
"runner_username": "RFranklin",
"time_started": "2015-11-26T14:15:18Z",
"time_finished": "2015-11-26T14:20:30Z",
"task_cost": {
"currency": "USD",
"amount": "0.23"
}
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/tasks/98c8dc8b-123a-456b-789c-d857b9c2cf16",
"runner_username": "RFranklin",
"time_started": "2015-11-25T16:26:23Z",
"time_finished": "2015-11-25T16:30:46Z",
"task_cost": {
"currency": "USD",
"amount": "0.23"
}
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/tasks/6961273b-123a-45b6-789c-d5d895fc6ea0",
"runner_username": "RFranklin",
"time_started": "2015-11-26T12:11:58Z",
"time_finished": "2015-11-26T12:16:33Z",
"task_cost": {
"currency": "USD",
"amount": "0.23"
}
},
]
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/projects/Rfranklin/my-project",
"analysis_spending": {
"currency": "USD",
"amount": "0.46"
},
"task_breakdown": [
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/tasks/a466e8b9-123a-456b-789c-50fc4701bb2e",
"runner_username": "RFranklin",
"time_started": "2015-11-25T14:02:13Z",
"time_finished": "2015-11-25T14:07:06Z",
"task_cost": {
"currency": "USD",
"amount": "0.23"
}
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/tasks/b0bbeda6-123a-456b-789c-82bc0e58bdb6",
"runner_username": "RFranklin",
"time_started": "2015-11-24T19:19:52Z",
"time_finished": "2015-11-24T19:24:45Z",
"task_cost": {
"currency": "USD",
"amount": "0.23"
}
},
]
},
{
"analysis_spending": {
"currency": "USD",
"amount": "0.69"
},
"task_breakdown": [
{
"href": "https://f4c-api.sbgenomics.com/v2/tasks/468dca93-123a-456b-789c-a080151d0687",
"runner_username": "RFranklin",
"time_started": "2015-11-25T14:30:45Z",
"time_finished": "2015-11-25T14:35:31Z",
"task_cost": {
"currency": "USD",
"amount": "0.23"
}
},
{
"href": "https://f4c-api.sbgenomics.com/v2/tasks/dc0e6559-123a-456b-789c-72e5bfb3c077",
"runner_username": "RFranklin",
"time_started": "2015-11-25T14:37:59Z",
"time_finished": "2015-11-25T14:47:10Z",
"task_cost": {
"currency": "USD",
"amount": "0.23"
}
},
{
"href": "https://api.sb.biodatacatalyst.nhlbi.nih.gov/v2/tasks/a8364b07-123a-456b-789c-045a3a2c41a1",
"runner_username": "RFranklin",
"time_started": "2015-11-25T14:43:02Z",
"time_finished": "2015-11-25T14:48:18Z",
"task_cost": {
"currency": "USD",
"amount": "0.23"
}
}
]
}
],
"total_spending": {
"currency": "USD",
"amount": "2.00"
}
}