Skip to main content
GET
/
v1
/
organizations
/
mine
cURL
curl --request GET \
  --url https://api.goevery.co/v1/organizations/mine \
  --header 'Authorization: Bearer <token>'
{
  "name": "organization/67ace4350b87d2b1cf296d84",
  "balanceCents": -5000000,
  "creditLimitCents": 100000000
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successfully fetched a organization.

name
string
required

The unique identifier for the organization.

Example:

"organization/67ace4350b87d2b1cf296d84"

balanceCents
number
required

The balance of the organization (if this value is negative, it means that you are a credit user).

Example:

-5000000

creditLimitCents
number
required

The maximum credit limit of the organization.

Example:

100000000