GET
/
v1
/
businesses
/
tags
/
values
List Tag Values
curl --request GET \
  --url https://sandbox.layerfi.com/v1/businesses/tags/values \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "key": "<string>",
    "value": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

businessId
string<uuid>
required

The UUID of the business to fetch tag values for

Query Parameters

include_deleted
boolean
default:false

Whether to include deleted tag keys in the response

Response

200 - application/json

Success

id
string<uuid>

The id of the key/value pair

key
string

The key of the key/value pair

value
string

The value of the key/value pair