Skip to main content
POST
/
api
/
engagements
/
card
/
{engagement-id}
/
credit-limit-increase
Initiate a credit limit increase for an engagement
curl --request POST \
  --url https://partner-card.test.public.rockerapi.dev/api/engagements/card/{engagement-id}/credit-limit-increase \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "appliedAmount": {
    "amount": 123,
    "currency": "<string>",
    "unit": "<string>"
  },
  "reason": {
    "reasonType": "<string>"
  },
  "monthlyIncome": {
    "amount": 123,
    "currency": "<string>",
    "unit": "<string>"
  },
  "redirectUrls": {
    "successUrl": "<string>",
    "failUrl": "<string>"
  }
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

engagement-id
string<uuid>
required

Body

application/json
appliedAmount
object
required

Money object represented in the smallest currency unit

reason
HttpCreditLimitIncreaseReasonCurrentLimitDoesNotCoverEverydayNeeds · object
required
monthlyIncome
object
required

Money object represented in the smallest currency unit

employmentType
enum<string>
required
Available options:
PERMANENT,
SOLE_PROPRIETOR,
RETIRED,
STUDENT,
HOMEMAKER,
OTHER
redirectUrls
HttpRedirectUrls · object
required

Response

id
string<uuid>
required
status
enum<string>
required
Available options:
PROCESSING,
AWAITING_DOCUMENTS,
AWAITING_DOCUMENT_REVIEW,
AWAITING_SIGNING,
COMPLETED,
REJECTED,
FAILED
createdAt
string<date-time>
required