My Organization

The Organization API endpoint enables you to retrieve your organization's data.

GET/v2/organizations/{id}`

Get my organization's data

This endpoint allows you to retrieve organization data by its ID.

Path Parameters

    idstringrequired

Loading...

Response

    {
      "id": "org_123456789",
      "name": "John Doe SAS",
      "alias": "john-doe-sas",
      "address": {
        "street": "123 Rebill Rd",
        "city": "Example City",
        "state": "RB",
        "postalCode": "12345",
        "country": "Mexico"
      },
      "statementDescriptor": "JOHN-DOE-SAS",
      "metadata": {
        "vertical": "manufacturing"
      },
      "createdAt": "2024-01-26T19:04:01.570Z",
      // Additional fields...
    }

Was this page helpful?