Added
The ability to escalate a Lite AML case into a standard one has been added to the Public API. You can read more about Lite AML case escalation in our Help Centre.
Escalation is achieved through the mutation escalateLiteCase
which takes the id of the case being escalated as an initial state. This latter field allows you to decide whether the escalated Standard case will be in a state of Draft
or In Progress
.
An example operation using this mutation is as follows:
mutation EscalateCase($input: EscalateLiteCaseInput!) {
escalateLiteCase(input: $input) {
__typename
... on CaseInformation {
caseId
name
caseType
caseStatus
individuals {
individualId
preferredName {
firstName
lastName
}
}
}
... on ValidationErrors {
errors {
message
fieldPath
}
}
}
}
Where the input would be:
{
"input": {
"caseId": 76,
"initialState": "SUBMIT_TO_FIRST_AML"
}
}