# Retrieve accounts associated with a user **GET /user/accounts/** Fetches a list of accounts linked to the specified user, identified by a unique token. ## Servers - production: https://m2e.cloud/api/v1/api (production) - dev: https://sales-channels.m2ecloud.dev/api/v1/api (dev) - local: https://10.0.30.15:56000/api/v1/api (local) ## Authentication methods - Jwt ## Parameters ## Responses ### 200: A list of accounts retrieved for the user. #### Headers - **X-RateLimit-Limit** () The number of allowed requests in the current period. - **X-RateLimit-Remaining** () The number of remaining requests in the current period. - **X-RateLimit-Retry-After** () The date of number of remaining requests will reset. #### Body Parameters: application/json (array[object]) - **token** (string(uuid)) Unique token identifying the account. - **channel** (string) Sales channel associated with this account (e.g., 'ebay', 'amazon'). - **title** (string) User-defined title for the account, often used for easy identification. - **identifier** (string) Unique identifier associated with the account on the specified sales channel. - **is_valid** (boolean) Indicates whether the account's credentials are valid and active. - **create_date** (string(date-time)) The date and time when the account was created. ### 404: Not found #### Body Parameters: application/json (array[object]) - **code** (string) An error code that identifies the type of error that occurred. - **message** (string) A message that describes the error condition in a human-readable form. - **data** (object | array) Additional information that can help the caller understand or fix the issue. ### 401: Unauthorized #### Body Parameters: application/json (array[object]) - **code** (string) An error code that identifies the type of error that occurred. - **message** (string) A message that describes the error condition in a human-readable form. - **data** (object | array) Additional information that can help the caller understand or fix the issue. ### 429: Too many requests #### Headers - **X-RateLimit-Limit** () The number of allowed requests in the current period. - **X-RateLimit-Remaining** () The number of remaining requests in the current period. - **X-RateLimit-Retry-After** () The date of number of remaining requests will reset. #### Body Parameters: application/json (array[object]) - **code** (string) An error code that identifies the type of error that occurred. - **message** (string) A message that describes the error condition in a human-readable form. - **data** (object | array) Additional information that can help the caller understand or fix the issue. ### 500: Internal server error #### Body Parameters: application/json (array[object]) - **code** (string) An error code that identifies the type of error that occurred. - **message** (string) A message that describes the error condition in a human-readable form. - **data** (object | array) Additional information that can help the caller understand or fix the issue. [Powered by Bump.sh](https://bump.sh)