PUT ### Enabling/Disabling pool member by list of server pool ***************************************************** URL:: /api/v3/pool/deploy//member/status/ where **pool_ids** are the identifiers of each pool desired to be updated. To update more than one pool, semicolons between the identifiers should be used. Example with Parameter IDs: One ID:: /api/v3/pool/deploy/1/member/status/ Many IDs:: /api/v3/pool/deploy/1;3;8/member/status/ Request body: .. code-block:: json { "server_pools": [{ "id": , "server_pool_members": [{ "id": , "member_status": }] },...] } More information about the PUT request can be obtained in:: /api/v3/help/pool_put/ .. _url-api-v3-pool-put-redeploy-list-pool: Updating pools by list in equipments ************************************ URL:: /api/v3/pool/deploy// Request body: .. code-block:: json { "server_pools": [{ "id": , "identifier": , "default_port": , environmentvip": , "servicedownaction": { "id": , "name": }, "lb_method": , "healthcheck": { "identifier": , "healthcheck_type": , "healthcheck_request": , "healthcheck_expect": , "destination": }, "default_limit": , "server_pool_members": [{ "id": , "identifier": , "ipv6": { "ip_formated": , "id": }, "ip": { "ip_formated": , "id": }, "priority": , "equipment": { "id": , "name": }, "weight": , "limit": , "port_real": , "last_status_update_formated": , "member_status": }], "pool_created": },...] } URL Example:: /api/v3/pool/ More information about the PUT request can be obtained in:: /api/v3/help/pool_put/