Pool Members
Add or Remove Pool Members
Adds and/or removes individual Clients, leaving every other member of the pool untouched.
Both operations are idempotent: adding a Client already in the pool and removing one that isn't are both no-ops. remove is applied before add, so a Client named in both ends up in the pool.
patch/resources/{resource_id}/pool_members
Path parameters
resource_idstring required
Resource ID
Request body
Example request
{
"pool_members": {
"add": [
"7cb89288-1fb3-433e-a522-2d087e45988d"
],
"remove": [
"cc9f561a-444d-4083-ab38-0abc6cf2314c"
]
}
}Response
Pool Member Response
Example response
{
"data": {
"device_ids": [
"4ddfa557-7dfc-484f-894c-2024ec3fe9f7",
"89d22f71-939d-442d-b148-897b730adfb4"
]
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.