Get a single billing group

/billing/groups/{billing_group}

This call retrieves a single billing group, specified by {billing_group}. To find the billing_group, use the call GET billing/groups to list all your billing groups. The information returned includes the billing group owner, the total balance, and the status of the billing group (pending or confirmed).

https://cgc-api.sbgenomics.com/v2/billing/groups/{billing_group}

Request

Example request

GET /v2/billing/groups/ec1dc1e3-12a3-4b56-789c-e3f2dca0c6f7 HTTP/1.1
Host: cgc-api.sbgenomics.com
X-SBG-Auth-Token: 3210a98c1db9318fa9d9273156740f74
curl  -s -H "X-SBG-Auth-Token: 3210a98c1db9318fa9d9273156740f74" -H "content-type: application/json" -X GET "https://cgc-api.sbgenomics.com/v2/billing/groups/ec1dc1e3-12a3-4b56-789c-e3f2dca0c6f7"

Header Fields

NameDescription
X-SBG-Auth-Token
required
Your CGC authentication token.

Path Parameters

NameDescription
billing_group
required
ID of the billing group you are querying.

Query parameters

NameData typeDescription
fieldsstringSelector specifying a subset of fields to include in the response.

Response

See a list of CGC-specific response codes that may be contained in the body of the response.

Example response body

{
{
  "id": "ec1dc1e3-12a3-4b56-789c-e3f2dca0c6f7",
  "href": "https://cgc-api.sbgenomics.com/v2/billing/groups/ec1dc1e3-12a3-4b56-789c-e3f2dca0c6f7",
  "owner": "RFranklin",
  "name": "Pilot Funds (RFranklin)",
  "type": "free",
  "pending": false,
  "disabled": false,
  "balance": {
    "currency": "USD",
    "amount": 0
  }
}
Language