How to authorize an edge node

If you’ve already installed Azion Orchestrator Agent on your device, the next step is to authorize the edge node on the platform. You can do so using:

go to install edge orchestrator agent
  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. Find the edge node you wish to authorize, which will have the status Waiting Authorization.
  4. Hover the edge node and click on the icon of a key.
  5. Confirm the authorization.

  1. Run the following GET request in your terminal, replacing [TOKEN VALUE] with your personal token and retrieve the edge node ID you wish to authorize:
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 PATCH request in your terminal, replacing [TOKEN VALUE] with your personal token and informing the edge node ID:
Terminal window
curl --location --request PATCH 'https://api.azionapi.net/edge_nodes/authorize' \
--header 'Accept: application/json; version=3' \
--header 'Authorization: Token [TOKEN VALUE]' \
--header 'Content-Type: application/json' \
--header 'accept: application/json; version=3' \
--data '{
"edge_node_ids": [
0
]
}'

Now, your edge node is authorized and able to work with edge services.


Contributors