Skip to main content
POST
/
api
/
v1
/
referral-agents
/
affiliation
check if client with given email is affiliated with the agent
curl --request POST \
  --url https://my.exnessaffiliates.com/api/v1/referral-agents/affiliation/ \
  --header 'Content-Type: application/json' \
  --data '
{
  "client_email": "<string>",
  "max_accounts": 123
}
'
{
  "is_affiliated": "bool",
  "link_code": "string",
  "accounts": [
    "string"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://exness-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
client_email
string
required

Agent's email

max_accounts
integer

Max amount of client accounts to return

Response

OK

is_affiliated
boolean
required

True if client is affiliated with the referral agent's partner

Example:

"bool"

Partner link code

Example:

"string"

accounts
string[]
required

Client account numbers

Example:
["string"]