This query loads information about the KYC details of applicant
General Pattern
query{
getApplicant({ organizationID: "UUID1"}){
field_1
field_2 {
nested_field_1
...
}
}
}Sample Query
query GetApplicant($organizationID: UUID1!) {
getApplicant(organizationID: $organizationID) {
id
firstName
lastName
email
dob
idNumbers {
type
value
stateCode
}
address {
flatNumber
buildingNumber
buildingName
street
subStreet
town
postcode
country
line1
line2
line3
state
}
href
}
}Authorization Required
| Name | Type | Description | Required |
|---|---|---|---|
organizationID | UUID1 | The Organization Id. | Yes |
Fields
| Name | Type | Description |
|---|---|---|
[ApplicantResponse](ref:https://developers.mojito.xyz/reference/applicantresponse) | Object | An object that contains the ApplicantResponse object information, such as id, first name, last name, address, etc. |
