v1

latestOpenAPI 3.0.32026-07-2621102.1 MB
Intake

/claim/intake/bulkCreate

Use this endpoint to bulk create one or more claims, completing the entire intake flow. This API request is a combination of all the requests for existing intake services all in one call.

📘 Note

Only AuthChargeback claims are supported at this time

post/claim/intake/bulkCreate

Request body

providerIdinteger required

Your unique provider identifier from SoFi Tech Solutions. Pattern: Max 10 digits Example: 9999

transactionIdstring required

Supply a globally unique ID to identify this endpoint request ("transaction"). Pattern: Max 60 characters Example: "984513-395483653-4483483478"

Example request

{
  "providerId": 9999,
  "transactionId": "984513-395483653-4483483478",
  "ClaimList": [
    {
      "AddClaimReasons": {
        "Questionnaire": {
          "QuestionList": [
            {
              "Identifier": "ClaimReason",
              "AnswerValue": "CardSecure"
            }
          ]
        }
      },
      "RetrieveTransactions": {
        "SearchMerchantName": "Amazon"
      },
      "Submit": {
        "CorrespondenceDetails": {
          "SelectedChannel": "Email",
          "EmailAddress": "TestCustomer@disputeme.info"
        },
        "Questionnaire": {
          "QuestionList": [
            {
              "Identifier": "ClaimReason",
              "AnswerValue": "CardSecure"
            }
          ]
        }
      }
    }
  ]
}

Response

Successful bulk claim creation request

rtokenstring nullable

A system-generated ID used for tracking

StatusCodeinteger nullable

The HTTP response status code

Example response

{
  "ClaimList": [
    {
      "ClaimId": "2411210115C"
    }
  ]
}