Skip to content

Get account by login#

About#

Get account by login.

GET /users/current/mt4/provisioning-profiles/:profileId/accounts/:login

For more information see swagger documentation

Headers#

Name Type Required Description
auth-token string Yes MetaApi account token. See Authentication & authorization

Path parameters#

Name Type Required Description
profileId string Yes Id of the provisioning profile that will be used as the basis
login number Yes Account login

Response#

  • 200 - Successfully retrieved account. Response schema: MetatraderUser
  • 400 - Request validation failed. Response schema: Error
  • 404 - Account not found. Response schema: Error

Examples#

Example request:

curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' --header 'auth-token: token' -d '{}' 'https://mt-manager-api-v1.new-york.agiliumtrade.ai/users/current/mt4/provisioning-profiles/profileId/accounts/login'

Example response:

{
  "login": "86053193",
  "address": "30 N Gould Street",
  "balance": "100",
  "city": "Sheridan",
  "country": "USA",
  "email": "agiliumtrade@agiliumtrade.ai",
  "group": "Example/Group",
  "leverage": "100",
  "name": "Example User",
  "phone": "+1(303)327-9699",
  "state": "Wyoming",
  "zip": "6200",
  "clientId": "5423512"
}