Skip to main content
DELETE
/
agent-profile-pools
/
{poolId}
/
members
Remove Profiles from Pool
curl --request DELETE \
  --url https://odyssey.asteroid.ai/agents/v2/agent-profile-pools/{poolId}/members \
  --header 'Content-Type: application/json' \
  --header 'X-Asteroid-Agents-Api-Key: <api-key>' \
  --data '
{
  "profileIds": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'
{
  "code": 400,
  "message": "<string>"
}

Authorizations

X-Asteroid-Agents-Api-Key
string
header
required

Path Parameters

poolId
string<uuid>
required

The ID of the agent profile pool

Body

application/json

Profile IDs to remove

Request to remove profiles from a pool

profileIds
string<uuid>[]
required

Profile IDs to remove from the pool

Minimum array length: 1

Response

There is no content to send for this request, but the headers may be useful.