Retrieve
Retrieve information of a previously created user.
Request
GET https://customer.staging.meetingdoctors.com/api/v3/pendingCompanyUsers/{token}
Headers
| Name | Value | 
|---|---|
apiKey | Integration identifier provided by MeetingDoctors | 
secretKey | Security key provided by MeetingDoctors to securize server-to-server communications | 
Content-Type | application/json | 
Response
Parameters
| Name | Type | Value | 
|---|---|---|
token | String | Your user unique identifier | 
status | Numeric | 0: Free, 2: Premium, 3: No Access | 
email | String | A valid email | 
nid_number | String | A valid dni or nie | 
firstname | String | User's first name | 
lastname | String | User's last name | 
gender | Numeric | 0:Male, 1:Female | 
birthdate | Date | ISO8601 Date (YYYY-MM-DD) | 
mobile_phone | String | A mobile phone number with prefix | 
description | String | Extra user information provided by integrator | 
features.video_call | Numeric | 0:Disabled, 1:Enabled | 
features.video_call_1to1 | Numeric | 0:Disabled, 1:Enabled | 
company_group_code | False | String | 
Example
{
    "token": "12345678Z",
    "status": 2,
    "email": "soporte@meetingdoctors.com",
    "nid_number": "12345678Z",
    "firstname": "Soporte",
    "lastname": "MeetingDoctors",
    "gender": 0,
    "birthdate": "1990-01-01",
    "mobile_phone": "612345678",
    "description": "",
    "features": {
        "video_call:": 1,
        "video_call_1to1:": 1,
    },
    "company_group_code": ""
}