v1
latestOpenAPI 3.0.32026-07-2621102.1 MBIntake
/claim/intake/retrieveSummary
Use this endpoint to retrieve the claim summary before submitting. A SummaryQuestionnaire is also returned and should be submitted when calling /claim/intake/submit
Prerequisite API call:
- /claim/intake/addQuestionnaire
📘 Note
This endpoint may return different data depending on the value of profile-type. See <a href="ref:api-reference-profile-type-differences" target="_blank">Profile Type Differences</a> for details.
post/claim/intake/retrieveSummary
Request body
Example request
{
"providerId": 9999,
"transactionId": "984513-395483653-4483483478",
"ClaimId": "2108160022C"
}Response
Successful retrieve summary request
Example response
{
"CorrespondenceDetails": {
"SelectedChannel": "Email",
"ChannelList": [
{
"Key": "Email",
"Value": "Email"
}
],
"EmailAddress": "TestCustomer@disputeme.info"
},
"SummaryQuestionnaire": {
"QuestionList": [
{
"Identifier": "ClaimReason",
"DisplayText": "Which of the following best describes the reason for your dispute?",
"DataType": "String",
"Type": "RadioButtons",
"Format": "RadioButtons",
"IsOptional": true,
"AnswerList": [
{
"Identifier": "MerchantDuplicate",
"DisplayText": "I was charged more than once."
}
],
"SelectedAnswer": "Yes",
"APIDocumentationList": [
{
"ImplementationNotes": "Get list of similar transactions within search criteria",
"Endpoint": "/claim/intake/retrieveSimilarTransactions",
"Method": "post"
}
]
}
]
},
"TransactionDetails": {
"SelectedPostedTransactionList": [
{
"AmountInfo": {
"ISOCodeAlpha": "USD",
"ISOCurrencyName": "US Dollar"
}
}
],
"SelectedPendingTransactionList": [
{
"AmountInfo": {
"ISOCodeAlpha": "USD",
"ISOCurrencyName": "US Dollar"
}
}
],
"SelectedRecurringTransactionList": [
{
"AmountInfo": {
"ISOCodeAlpha": "USD",
"ISOCurrencyName": "US Dollar"
}
}
],
"DeflectedTransactionList": [
{
"AmountInfo": {
"ISOCodeAlpha": "USD",
"ISOCurrencyName": "US Dollar"
}
}
]
}
}