v1

latestOpenAPI 3.0.02026-07-261733191.1 MB
Organizations

Replace members of a customer organization

Replace all customer in an existing customer organization. This action does not impact their membership in other organizations.

put/customer-organizations/{id}/members

Path parameters

idstring required

Customer organisation ID

Headers

Authorizationstring required

Your API credentials. Eg. Basic {credentials}.

sequence-version'2024-07-30'

Use this header to select an API version

Request body

customerIdsstring[] required

IDs of customers to add to an existing organization.

Example request

{
  "customerIds": [
    "e06f36e2-0a44-404d-bdbc-b66a292609b0"
  ]
}

Response

OK

idstring required

Organization ID

Example response

{
  "id": "c0dc4e79-ec52-4811-8cf5-addb2527915c",
  "owner": {
    "id": "50af5191-05a3-42a5-802a-6b59091157af",
    "name": "FinTech Solutions Inc."
  },
  "members": [
    {
      "id": "e06f36e2-0a44-404d-bdbc-b66a292609b0",
      "name": "FinTech Wealth Management"
    }
  ]
}