Create Tag

POST /api/v1.0/labels

This endpoint create a new tag record.

application/json

Body Required

  • name string Required

    Name

  • color string Required

    Color

  • type string

    Type

    Values are others or member.

Responses

  • 201

    The resource created successfully

    Hide response attributes Show response attributes object
    • message string Required

      Success message

    • id string Required

      Label Record Unique ID

  • 401

    The client request has not been completed because it lacks valid authentication credentials for the requested resource.

  • 403

    The client does not have access rights to the content.

  • 405

    The request method is known by the server but is not supported by the target resource.

POST /api/v1.0/labels
curl \
 -X POST https://openapi.niftypm.com/api/v1.0/labels \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"name":"string","color":"string","type":"others"}'
Request example
{
  "name": "string",
  "color": "string",
  "type": "others"
}
Response examples (201)
{
  "message": "string",
  "id": "string"
}