Skip to main content
POST
/
posts-bulk
/
labels
Update labels
curl --request POST \
  --url https://api.postflow.app/v1/posts-bulk/labels \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "method": "append",
  "post_ids": [
    "<string>"
  ],
  "label_ids": [
    "<string>"
  ]
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
method
enum<string>
required
Available options:
append,
remove,
sync
post_ids
string[]
required
Maximum array length: 200
label_ids
string[]
required
Maximum array length: 20

Response

No content