Retrieve profiles

Retrieve profiles

#b2b

https://api.worldota.net/api/b2b/v3/profiles/list/

The call gets a contract profiles list.

Request example

curl --user '<KEY_ID>:<API_KEY>' 'https://api.worldota.net/api/b2b/v3/profiles/list/'

Response

Response example

{
  "data":{
    "users":[
      {
        "email":"[email protected]",
        "first_name":"Eliot",
        "last_name":"White",
        "middle_name":null,
        "phone":"+38112344567888",
        "status":"awaiting_confirmation",
        "type":"master"
      },
      {
        "email":"[email protected]",
        "first_name":"John",
        "last_name":"Smith",
        "middle_name":null,
        "phone":"+4412344567899",
        "status":"awaiting_confirmation",
        "type":"manager"
      }
    ]
  },
  "debug":null,
  "error":null,
  "status":"ok"
}