curl --request GET \
--url https://api.hyperline.co/v1/organisations/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "cus_0noDeAEU22FgA4",
"name": "Acme Group",
"currency": "EUR",
"country": "FR",
"invoice_schedule": "month",
"next_invoice_at": "2024-04-01T00:00:00Z",
"child_customer_ids": [
"cus_Typ0px2W0aiEtl"
]
}
Retrieve the details of an existing organisation.
curl --request GET \
--url https://api.hyperline.co/v1/organisations/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "cus_0noDeAEU22FgA4",
"name": "Acme Group",
"currency": "EUR",
"country": "FR",
"invoice_schedule": "month",
"next_invoice_at": "2024-04-01T00:00:00Z",
"child_customer_ids": [
"cus_Typ0px2W0aiEtl"
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.
Was this page helpful?