Description (Show Device)
Show the information of the selected device. (GET)
End Point
https://api-h2h-staging.yedpay.com/v1/devices/{{device_id}}
Variable
| # | Name | Type | Description |
|---|---|---|---|
| 1 | device_id | String | Device's ID |
Request Header
| # | Key | Value | Description |
|---|---|---|---|
| 1 | Authorization | Bearer {{access_token}} | Login Token |
Body
| # | Name | Type | Description |
|---|
Response
| # | Name | Type | Description |
|---|---|---|---|
| 1 | success | Boolean | Show selected device's Information Success or Fail |
| 2 | data | Array | Include selected device's Information (id, platform, token etc..) |
Success Response - data
| # | Key | Value | Description |
|---|---|---|---|
| 1 | id | String | Id of the Device |
| 2 | platform | String | Platform of the Device |
| 3 | provider | String | Push method of device's notification |
| 4 | name | String | Name of the Device |
| 5 | token | String | Token of the Device |
| 6 | enabled | Boolean | Device Enabled or Not |
| 7 | created_at | String | Created Date |
| 8 | updated_at | String | Updated Date |
Example Success Response
{
"success": true,
"data": {
"id": "JwoMPpKy",
"platform": "ios",
"provider": "jpush",
"name": "xxx",
"token": "190e35f7e073ba880ea",
"enabled": true,
"created_at": "2017-09-01 17:10:51",
"updated_at": "2017-09-01 17:10:51"
}
}
Example Error Response
{
"success": false,
"message": "Unauthenticated.",
"status": 500
}
v1.89.5-20251216 © The Payment Cards Group Limited. All rights reserved.