Skip to main content
POST
/
organizations
/
public-profiles
Retrieve public profiles for a list of organization IDs
curl --request POST \
  --url https://profiles.platform.arb.inc/organizations/public-profiles \
  --header 'Content-Type: application/json' \
  --data '
{
  "organizationIDs": [
    "29029b8a-7d04-4b6f-b85e-9e42bb36ea31",
    "45d1dc6d-2737-4086-a6d0-406ba73c7399"
  ]
}
'
{
  "profiles": [
    {
      "id": "29029b8a-7d04-4b6f-b85e-9e42bb36ea31",
      "name": "Acme Corp"
    }
  ]
}

Body

application/json
organizationIDs
string[]
required

A list of organization IDs to fetch public profiles for.

Maximum array length: 1000
Example:
[
"29029b8a-7d04-4b6f-b85e-9e42bb36ea31",
"45d1dc6d-2737-4086-a6d0-406ba73c7399"
]

Response

200 - application/json

Successfully retrieved public profiles.

profiles
object[]