# Show

To show a supervisor.

# HTTP Request:

GET https://api.serveravatar.com/organizations/{organization}/servers/{server}/applications/{application}/supervisors/{supervisor}

# Curl Request Example:

curl --request GET \
  --url "https://api.serveravatar.com/organizations/{organization}/servers/{server}/applications/{application}/supervisors/{supervisor}" \
  --header 'content-type: application/json' \
  --header 'accept: application/json' \
  --header 'Authorization: <YOUR API TOKEN>' \

# Response:

# Supervisor Show:

  • 200 (Ok)
{
  "supervisor": {
    "id": 1,
    "name": "EmailDefault",
    "user": "x5Ov6RGvBOEKVjay",
    "command": "php /home/x5Ov6RGvBOEKVjay/myapp/public_html/artisan queue:work --queue=EmailHigh",
    "autostart": 1,
    "autorestart": 1,
    "numprocs": 2,
    "logfile": "EmailDefault-worker.log",
    "loglevel": "trace",
    "created_at": "2023-03-01 21:27:34",
    "updated_at": "2023-03-01 21:27:34"
  }
}

# Organization Not Found

  • 404 (Not Found)
{
    "message": "Organization not found!"
}

# Server Not Found

  • 404 (Not Found)
{
    "message": "Server not found!"
}

# Server Error

  • 500 (Internal Server Error)
{
    "message": "Something went really wrong!"
}
Last Updated: 3/1/2023, 8:03:44 PM