Get a tag

GET /v1/tags/{tagId}

Get a tag

Path parameters

  • tagId string Required

    The id of the tag

Responses

  • 200 application/json

    Tag found and returned successfully

    Hide response attributes Show response attributes object
    • id string Required

      The id of the tag.

    • name string Required

      The name of the tag.

    • emoji string

      The emoji of the tag

    • order integer Required

      The order of the tag.

  • 400

    Malformed payload

  • 404

    Tag not found

GET /v1/tags/{tagId}
curl \
 --request GET 'https://openapi.meltingspot.io/v1/tags/{tagId}'
Response examples (200)
{
  "id": "string",
  "name": "string",
  "emoji": "string",
  "order": 42
}