DELETE
/
v1
/
businesses
/
{businessId}
/
payouts
/
tags
curl --request DELETE \
  --url https://sandbox.layerfi.com/v1/businesses/{businessId}/payouts/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tag_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}'
{
  "type": "{}"
}

Authorizations

Authorization
string
header
required

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

Headers

Content-Type
string

Content-Type must be set to application/json

Path Parameters

businessId
string
required

The UUID of the business to untag payouts for

Body

application/json
tag_ids
string[]

List of tag IDs to delete

Response

200 - application/json
type
string

Resource type. Value will be 'com.layerfi.controllers.EmptyResponse'.