How to unbind an edge service

You can unbind an edge service from an edge node using:


  1. Access Azion Console.
  2. On the upper-left corner of the page, open the Products menu, represented by three horizontal lines, and then select Edge Nodes.
  3. Select the edge node to which you want to unbind a service.
  4. Go to the Services tab.
  5. Hover the service on the list and click the trash can icon.

  1. Run the following GET request in your terminal, replacing [TOKEN VALUE] with your personal token and retrieve the edge node ID to which you wish to unbind an edge service:
Terminal window
curl --location 'https://api.azionapi.net/edge_nodes/' \
--header 'Accept: application/json; version=3' \
--header 'Authorization: Token [TOKEN VALUE]'
  1. Run the following GET request in your terminal, replacing [TOKEN VALUE] with your personal token and :id with the ID of the edge node, and retrieve the ID of the relation between the edge node and the chosen service:
Terminal window
curl --location 'https://api.azionapi.net/edge_nodes/:id/services' \
--header 'Accept: application/json; version=3' \
--header 'Authorization: Token [TOKEN VALUE]'
  1. Run the following DELETE request in your terminal, replacing [TOKEN VALUE] with your personal token, :node_id with the ID of the edge node and :bind_id with the ID of the relation between edge node and edge service:
Terminal window
curl --location --request DELETE 'https://api.azionapi.net/edge_nodes/:node_id/services/:bind_id' \
--header 'Accept: application/json; version=3' \
--header 'Authorization: Token [TOKEN VALUE]'

Now, your edge node doesn’t have a relation with this specific edge service anymore.


Contributors