Retrieve all credentials for a user
GEThttps://embedded.runalloy.com/2024-03//users/:userId/credentials
Returns a list of all credentials created for a specified user.
Request
Path Parameters
userId stringrequired
The id of the currently logged in user
Header Parameters
Authorization stringrequired
Default value: bearer YOUR_API_KEY
Responses
- 200
200
- application/json
- Schema
- Example (from schema)
- Result
Schema
data
object[]
{
"data": [
{
"credentialId": "63253068590a5f1d6cc9b635",
"type": "shopify",
"createdAt": "2022-09-17T02:12:25.619Z",
"updatedAt": "2022-09-17T02:12:25.620Z"
}
]
}
{
"data": [
{
"credentialId": "63253068590a5f1d6cc9b635",
"type": "shopify",
"createdAt": "2022-09-17T02:12:25.619Z",
"updatedAt": "2022-09-17T02:12:25.620Z"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://embedded.runalloy.com/2024-03/users/:userId/credentials' \
-H 'Accept: application/json'
ResponseClear