cURL
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>" } }
Creates a new tag. Tag names must be unique within your team/account (1-100 characters). Returns 409 Conflict if a tag with the same name already exists.
OAuth2 access token obtained via the authorization flow. Include in the Authorization header as: Bearer {access_token}
Bearer {access_token}
Tag name
1 - 100
Default Response
Show child attributes