Get Tags
GET/v1/:clientId/user-devices/:deviceId/tags
This endpoint returns an array of tags associated with the device.
Request
Path Parameters
clientId stringrequired
deviceId stringrequired
Header Parameters
X-API-KEY string
Example: bsKXkZhhdczuaHZ4xwVGk47Mbm77Epcf
X-REALM string
Example: incrowd
X-APP-ID string
Example: ios
Responses
- 200
OK
Response Headers
Content-Type
string
Content-Length
integer
Connection
string
Date
string
Vary
string
X-Cache
string
Via
string
X-Amz-Cf-Pop
string
X-Amz-Cf-Id
string
- application/json
- Schema
- Example (from schema)
- Example
Schema
object
{}
{
"status": "success",
"data": [
{
"name": "Something",
"value": false,
"expiry": "2020-01-14T03:02:01.000Z",
"source": "USER"
},
{
"name": "NoExpiry",
"value": "2020-01-07T03:02:01Z",
"expiry": null,
"source": "USER"
},
{
"name": "SomethingNew",
"value": "2020-01-07T03:02:01Z",
"expiry": "2020-01-18T03:02:01.000Z",
"source": "USER"
}
],
"metadata": {
"createdAt": "2021-02-02T17:37:10.952Z"
}
}
Loading...