🚀 Welcome to our revamped documentation featuring dedicated Business Logic and API sections with improved layouts—please remember to update your bookmarks as old links will no longer work!
curl --request POST \
--url 'https://{{baseUrl}}/amlyze-ws-rest/validate-batch-contracts' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"contracts": [
{
"action": "CREATE",
"communicationNumber": "CommNumber0",
"requester": "financial_institution",
"businessUnit": "sandbox",
"contractType": "CREDIT_CARD",
"extId": "any_contract_1",
"contractCode": "REG74121100",
"customerExtId": "ORG20231117550"
},
{
"action": "UPDATE",
"communicationNumber": "CommNumber1",
"requester": "financial_institution",
"businessUnit": "sandbox",
"contractType": "CREDIT_CARD",
"extId": "any_contract_1232",
"contractCode": "REG74121101",
"customerExtId": "ORG20231117550"
}
]
}
'{
"results": [
{
"businessUnit": "<string>",
"communicationNumber": "<string>",
"errorCode": "<string>",
"errorDescription": "<string>",
"extId": "<string>",
"resultType": "REQUEST_ACCEPTED",
"timeElapsedMs": 123
}
],
"timeElapsedMs": 123
}This method sends data only for validating JSON.
curl --request POST \
--url 'https://{{baseUrl}}/amlyze-ws-rest/validate-batch-contracts' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"contracts": [
{
"action": "CREATE",
"communicationNumber": "CommNumber0",
"requester": "financial_institution",
"businessUnit": "sandbox",
"contractType": "CREDIT_CARD",
"extId": "any_contract_1",
"contractCode": "REG74121100",
"customerExtId": "ORG20231117550"
},
{
"action": "UPDATE",
"communicationNumber": "CommNumber1",
"requester": "financial_institution",
"businessUnit": "sandbox",
"contractType": "CREDIT_CARD",
"extId": "any_contract_1232",
"contractCode": "REG74121101",
"customerExtId": "ORG20231117550"
}
]
}
'{
"results": [
{
"businessUnit": "<string>",
"communicationNumber": "<string>",
"errorCode": "<string>",
"errorDescription": "<string>",
"extId": "<string>",
"resultType": "REQUEST_ACCEPTED",
"timeElapsedMs": 123
}
],
"timeElapsedMs": 123
}Documentation Index
Fetch the complete documentation index at: https://api.amlyze.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Batch of contracts to validate
Show child attributes