As part of the launch of our Embedded EIV feature we have added the ability to query the verification url for an individual on a case to use within an embedded verification experience.
An example of creating a new case and requesting these urls is as following.
mutation CreateCase($input: CreateCaseForIndividualsInput!) {
createCaseForIndividuals(input: $input) {
__typename
... on CaseInformation {
caseId
individuals {
individualId
urls {
verification(embedded: true) {
... on ValidUrl {
url
}
... on InvalidUrl {
url
}
}
}
}
}
... on ValidationErrors {
errors {
message
fieldPath
}
}
}
}
For more support in using these urls see the usage documentation.