POST #### Creating list of pools in database: *********************************** This only affects database, if flag **"created"** is assigned true, it will be ignored. URL:: /api/v3/pool/ 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 POST request can be obtained in:: /api/v3/help/pool_post/