Retrieve accounts associated with a user
Fetches a list of accounts linked to the specified user, identified by a unique token.
GET /user/accounts/
curl \
-X GET https://m2e.cloud/api/v1/api/user/accounts/
Response examples (200)
# Headers
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 90
X-RateLimit-Retry-After: 2022-11-04T13:43:28Z
# Payload
[
{
"token": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
"channel": "ebay",
"title": "My eBay Account",
"identifier": "ebay-usr-12345",
"is_valid": true,
"create_date": "2020-12-30T15:30:50Z"
}
]
Response examples (404)
[
{
"code": 404,
"message": "Not found.",
"data": {}
}
]
Response examples (401)
[
{
"code": 404,
"message": "Not found.",
"data": {}
}
]
Response examples (429)
# Headers
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 90
X-RateLimit-Retry-After: 2022-11-04T13:43:28Z
# Payload
[
{
"code": 404,
"message": "Not found.",
"data": {}
}
]
Response examples (500)
[
{
"code": 404,
"message": "Not found.",
"data": {}
}
]