Skip to main content
POST
/
tags
Create tag
curl --request POST \
  --url https://api.pickfu.com/v1/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": 123,
    "name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

OAuth2 access token obtained via the authorization flow. Include in the Authorization header as: Bearer {access_token}

Body

application/json
name
string
required

Tag name

Required string length: 1 - 100

Response

Default Response

success
boolean
data
object