Skip to content

Creating Transactions

To add a single, RCC transaction to the system, use the following endpoint:

POST /api/v3/RccTransactions/companycode/{companyCode}

Model required for adding the transaction (filled wiht random values):

Model Example:
{
"firstSignerFirstName": "WA9MtsoBrYaCoTN RuouA4Do",
"firstSignerLastName": "wAYKfyzw&OC2lLhplm",
"secondSignerFirstName": "Chx&MP`hI93?CAiCCXQhQu",
"secondSignerLastName": "ITw75Bl0z05w0mH51UZs",
"address1": "B jvSy8-o/kNm",
"address2": "'/dnj(1 1dYEPCFIGk",
"city": "je8feR6tPchAD",
"state": "uD",
"zip": "65218 7156",
"yourReferenceNumber": "string",
"bankRoutingNumber": "247090010",
"bankAccountNumber": "29155-",
"amount": 0
}

To add multiple, RCC transactions to the system, use the following endpoint:

POST /apiv3/RccTransactions/companycode/{companyCode}/many

Model required for adding the transaction (filled with random values):

Model Example:
{
"alwaysCommitValid": true,
"items": [
{
"firstSignerFirstName": "oPbavjEnEV&aKR7m'q",
"firstSignerLastName": "7W5E.sBw0",
"secondSignerFirstName": "&wHPKa",
"secondSignerLastName": "P-`g?cyWo.Y-smO",
"address1": "0d1tArkeKRHS(4",
"address2": "FcgAPb(vR",
"city": "X0D9t",
"state": "HE",
"zip": "68327 8705",
"yourReferenceNumber": "string",
"bankRoutingNumber": "411281220",
"bankAccountNumber": "048-444-366",
"amount": 0
}
]
}