List my tags
curl --request GET \
--url https://api.staging.blackbird.xyz/flynet/v1/users/me/tagsconst options = {method: 'GET'};
fetch('https://api.staging.blackbird.xyz/flynet/v1/users/me/tags', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET'};
fetch('https://api.staging.blackbird.xyz/flynet/v1/users/me/tags', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Users
List my tags
GET
/
users
/
me
/
tags
List my tags
curl --request GET \
--url https://api.staging.blackbird.xyz/flynet/v1/users/me/tagsconst options = {method: 'GET'};
fetch('https://api.staging.blackbird.xyz/flynet/v1/users/me/tags', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET'};
fetch('https://api.staging.blackbird.xyz/flynet/v1/users/me/tags', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Returns metadata tags attached to the authenticated member. The
subject is resolved from the access token, so there is no member ID in
the path. A tag with
Auth: OAuth access token.
A member with no tags returns
type: "industry" identifies the member as a
restaurant employee.
From the kitchen - Use the
industry tag for staff-recognition
flows, internal experiences, and industry-only rewards.Tasting note - Tag
type values are lowercase. Match exact case:
type === "industry", not "INDUSTRY".Example
curl https://api.staging.blackbird.xyz/flynet/v1/users/me/tags \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response
{
"tags": [
{
"object": "user_tag",
"type": "industry",
"metadata": [
{ "key": "Employer", "value": ["FLYBAR"] }
],
"created_at": "2026-01-15T21:47:02.273075Z",
"updated_at": "2026-02-19T18:50:38.512641Z"
}
]
}
{ "tags": [] }.
Schema
| Field | Type | Notes |
|---|---|---|
object | string | Always "user_tag". |
type | string | Lowercase enum. Currently "industry". |
metadata | array | Each item is { "key": string, "value": string[] }. |
created_at | ISO 8601 timestamp | Created time. |
updated_at | ISO 8601 timestamp | Last update time. |