|

Add a tag for a business

post/businesses/{fp_id}/tags
External ID
Adds a new free-form tag to the provided business.

Request

Path parameters

fp_id·

string

Body

tag·

string

Any string to tag the user

Response

created_at·

string

id·

string

tag·

string

POST /businesses/{fp_id}/tags
1curl -X POST https://api.onefootprint.com/businesses/{fp_id}/tags \
2  -u sk_test_xxxxx: \
3  -d '{
4    "tag": "transaction_chargeback"
5  }'
Response example
{
  "created_at": "2022-01-04T12:00-07:00",
  "id": "tag_2ZwAl6LyHB6l7Ap2Ksdw8X",
  "tag": "transaction_chargeback"
}