Registration integration
Interoperating with a National ID system at the point of registration, both synchronously and asynchronously.
Last updated
POST https://gateway.<your_domain>/graphql
Content-Type: application/json
Authorization: Bearer {{token}}
{
"operationName": "confirmRegistration",
"query": "mutation confirmRegistration(
$id: ID!
$details: ConfirmRegistrationInput!
) {
confirmRegistration(id: $id, details: $details)
}",
"variables": {
"id":"<record uuid from JWT>",
"details": {
"identifiers": [{
"type": "NATIONAL_ID",
"value": "<optionally store created natonal id at birth for use in OpenCRVS search / certificate>"
}],
"registrationNumber": "<Birth / Death Registration Number>",
"comment": "<optionally store an audit log comment>",
}
}
}