createSubject
This method is to create a new subject. Then you can associate the subject to a record when you call createRecord.
This method was added in Cortex 2.1
Parameters
Name | Type | Required | Description |
cortexToken |
| yes | A token returned by authorize. |
subjectName |
| yes | The name of the subject. Must be 30 characters or less. |
dateOfBirth |
| no | The date of birth of the subject. The format must be "YYYY-MM-DD", e.g. "1980-12-25". |
sex |
| no | Must be "M", "F" or "U". These letters stands for male, female and unknown respectively. |
countryCode |
| no | The Alpha-2 ISO code of the country the subject lives in. |
state |
| no | The state the subject lives in. |
city |
| no | The city the subject lives in. |
attributes |
| no | A list of demographic attribute objects. See Subject object. |
Result
The result is a subject object representing the new subject.
Examples
Create a subject with only his name.
Create a subject with more information.
Last updated