Skip to main content

BulkCreateOrganizationResponse

data object[]required

Array of results for each organization creation attempt

  • Array [
  • idintegerrequired

    Internal unique identifier of the created organization (system-generated)

    Example: 1
    statusintegerrequired

    HTTP status code indicating the result of the creation attempt for this specific organization

    Example: 200
    externalIdstring

    The external identifier of the organization (for reference in case of errors)

    Example: SUP-00123
    errorstring

    Error message if the creation failed (only present when status is not 200)

    Example: Organization with this external_id already exists
  • ]
  • BulkCreateOrganizationResponse
    {
    "data": [
    {
    "id": 1,
    "status": 200,
    "externalId": "SUP-00123",
    "error": "Organization with this external_id already exists"
    }
    ]
    }