Create Manual retry

Last changes: 11-29-2021

Request parameters

FieldDescriptionTypeLengthMandatory
reasonReason of the manula reprocessingString128Yes

 

Request sample

Path:

POST {{BaseUrl}}/subscriptions/Subscription-4903f0f3-d718-404b-a675-167eacfabe12/billing-cycles/BillingCycle-44401c1b-c762-42dd-81bc-fd1fbad54af2/manual-retries

Header:

Content-Type: application/json
Accept-Language: en-US

{
"reason": "Reprocessing a failed transaction"
}

Response parameters

FieldDescriptionTypeLengthMandatory
idManual retry ID, automatically generated by the system
Format: "PaymentSeries" + "-" + <UUID> 
Example: "retry-6a05ccb8-9c58-4907-9014-8cedd51d0464"
String42Yes
createdAtTimestamp of when the manual retry was created.
Format: yyyy-MM-dd'T'HH:mm:ss.SS'Z
(E.g: 2021-02-11T15:00:44.718Z)
String24Yes
transactionIdId of the transaction created according to this manual retry.
Automatically generated by the system

Format: "Transaction" + "-" + <UUID> 
Example: "Transaction-5f391daa-80a8-4292-96d9-3fdc1a12192b"

String48Yes
reasonReason of the transaction reprocessingString125Yes

Response sample

Status Code:

201 (Created)

Header:

Content-Type: application/json
Accept-Language: en-US

{
"id": "retry-6a05ccb8-9c58-4907-9014-8cedd51d0464",
"createdAt": "2021-05-10T15:38:01.02Z",
"updatedAt": "2021-05-10T15:38:01.02Z",
"transactionId": "transaction-6a05ccb8-9c58-4907-9014-8cedd51d0464",
"reason": "Reprocessing a failed transaction"
}