Get Device Information
GET/devices/6
Get Device Information
Request
Responses
- 200
- 403
- 404
- 422
OK
Response Headers
X-Powered-By any
Content-Length any
ETag any
Date any
Connection any
Keep-Alive any
- application/json; charset=utf-8
- Schema
- Example (from schema)
- Example
Schema
status int32required
message stringrequired
data objectrequired
id stringrequired
server_id stringrequired
user_id stringrequired
phone stringrequired
webhook_url stringrequired
status stringrequired
created_at stringrequired
updated_at stringrequired
Server objectrequired
name stringrequired
Subscription objectrequired
quote_available stringrequired
quote_used stringrequired
{
"status": 200,
"message": "OK",
"data": {
"id": "44",
"server_id": "1",
"user_id": "4",
"phone": "6285603051722",
"webhook_url": "https://animebot-cool.herokuapp.com/",
"status": "ACTIVE",
"created_at": "2020-03-13T00:34:04.000Z",
"updated_at": "2022-03-21T01:03:08.000Z",
"Server": {
"name": "ASIA (SGP1)"
},
"Subscription": {
"quote_available": "-1",
"quote_used": "1"
}
}
}
{
"status": 200,
"message": "OK",
"data": {
"id": "44",
"server_id": "1",
"user_id": "4",
"phone": "6285603051722",
"webhook_url": "https://animebot-cool.herokuapp.com/",
"status": "ACTIVE",
"created_at": "2020-03-13T00:34:04.000Z",
"updated_at": "2022-03-21T01:03:08.000Z",
"Server": {
"name": "ASIA (SGP1)"
},
"Subscription": {
"quote_available": "-1",
"quote_used": "1"
}
}
}
Forbidden
Response Headers
Date any
Content-Length any
- application/json; charset=utf-8
- Schema
- Example (from schema)
- Example
Schema
code int32required
message stringrequired
data stringnullablerequired
{
"code": 403,
"message": "FORBIDDEN",
"data": null
}
{
"code": 403,
"message": "FORBIDDEN",
"data": null
}
General Not Found Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
Not Found
message string
HTTP Status Message
{
"status": 404,
"message": "Not Found"
}
General Validation Error Response
- application/json
- Schema
- Example (from schema)
Schema
status integer
HTTP Status Code
message string
HTTP Status Message
errors string[]
{
"status": 422,
"message": "Validation Error ",
"errors": [
"string"
]
}
Loading...