Application Workers API Endpoints
Learn more about how to fetch application workers with our API
Contents
Get Workers
To list all existing workers of that app you can simply send a GET request to the following endpoint.
https://api.nodion.com/v1/applications/:id/workers
Required Headers: Authorization
Example Response:
{
"workers": [
{
"id": "747bce22-4bc1-4338-9928-6cd9f1f36467",
"status": "available",
"state": "default",
"name": "Sidekiq",
"instance_amount": 1,
"instance_type_id": "c1647d2d-a9ea-4c82-bbfb-6abef82ad5b6"
}
]
}