Get Authorized Apps
GET/users/:id/authorized_apps
Get the apps that user has authorized to write to their account
Request
Path Parameters
id stringrequired
A User ID
Responses
- 200
- 400
- 500
Success
- application/json
- Schema
- Example
Schema
Array [
]
dataobject[]
address stringrequired
name stringrequired
description string
image_url string
grantor_user_id stringrequired
grant_created_at stringrequired
grant_updated_at stringrequired
{
"data": [
{
"address": "0x7d2a1604175e083eccc31a374155e89c97d9b206",
"name": "Test App",
"description": null,
"image_url": null,
"grantor_user_id": "D8v5P",
"grant_created_at": "2023-08-04 14:33:22",
"grant_updated_at": "2023-08-04 14:33:22"
},
{
"address": "0x82f27eaa87ed1557863283e6d1bb1d3f478413c4",
"name": "test",
"description": "test",
"image_url": null,
"grantor_user_id": "D8v5P",
"grant_created_at": "2023-10-19 23:48:43",
"grant_updated_at": "2023-10-19 23:48:43"
},
{
"address": "0xe84f7b9d34174b97d58ea8fde1fdb2f7c4d30056",
"name": "My Vite App",
"description": null,
"image_url": null,
"grantor_user_id": "D8v5P",
"grant_created_at": "2024-02-28 21:36:57",
"grant_updated_at": "2024-02-28 21:36:57"
}
]
}
Bad request
Server error
Loading...