Skip to main content
GET
/
api
/
v2
/
organizations
/
me
Get current organization
curl --request GET \
  --url https://rcur.app/api/v2/organizations/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "org_abc123",
  "name": "Acme B.V.",
  "email": "info@acme.nl",
  "mollie_organization_id": "org_12345678"
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Organization details

id
string
required
Example:

"org_abc123"

name
string
required
Example:

"Acme B.V."

email
string
required
Example:

"info@acme.nl"

mollie_organization_id
string | null
Example:

"org_12345678"