# Tags

# Show

You can view the tags assigned to a specific application or retrieve all tags across multiple applications on server using the respective APIs.

  • Fetch Tags for a Specific Application: To retrieve the tags associated with a specific application, use the API.

  • Fetch Tags for Applications on a Specific Server: To get a complete list of applications within a server along with their assigned tags, use the API.

  • Fetch Tags for Applications Across an Organization: To get a complete list of applications across multiple servers within a organization along with their assigned tags, use the API.

# Update

Update the tags associated with a specific application on a server.

# HTTP Request:

PATCH https://api.serveravatar.com/organizations/{organization}/servers/{server}/applications/{application}/tags

# Curl Request Example:

curl --request PATCH \
  --url "https://api.serveravatar.com/organizations/{organization}/servers/{server}/applications/{application}/tags" \
  --header 'content-type: application/json' \
  --header 'Authorization: <YOUR API TOKEN>' \
  --data '{
      "tags": ["Tag1", "Tag2", "Tag3"]
  }'

# Response:

# Application Not Found

  • 404 (Not found)
{
    "message": "Application not found."
}

# Tags Update

  • 200 (Ok)
{
  "message": "Tags updated successfully."
}

# 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 wrong."
}

# Delete

Delete all tags associated with a specific application on a server.

# HTTP Request:

DELETE https://api.serveravatar.com/organizations/{organization}/servers/{server}/applications/{application}/tags

# Curl Request example:

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

# Response:

# Tags Delete

  • 200 (Ok)
{
  "message": "Tags removed successfully."
}

# 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 wrong."
}
Last Updated: 2/28/2025, 4:55:39 AM