Skip to main content
PATCH
/
preapprovals
/
{id}
Update an existing Pre-Approval
curl --request PATCH \
  --url https://commerce.driv.ly/api/preapprovals/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "consumer": "<string>",
  "validUntilTime": "2023-11-07T05:31:56Z",
  "creditBand": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "validUntilTime": "2023-11-07T05:31:56Z",
    "creditBand": "<string>",
    "consumer": "<string>"
  },
  "success": true
}

Path Parameters

id
string
required

Pre-Approval is uniquely identified by id

Query Parameters

depth
integer

The number of levels of related objects to include in the response

Body

application/json
id
string

Pre-Approval is uniquely identified by id

consumer

Consumer has Pre-Approval

validUntilTime
string<date-time>

Pre-Approval is Valid Until Time

creditBand

Pre-Approval falls in Credit Band

Response

Pre-Approval Updated

data
Pre-Approval · object
Example:
{
"id": "pre_59dk394fjdl3",
"consumer": "Consumer ID",
"creditBand": "crb_39fjkd93nmd0",
"validUntilTime": "2024-04-12T00:00:00Z"
}
success
boolean