PUT
/
checks
/
{checkId}
curl --request PUT \
  --url https://test.onlinecheckwriter.com/api/v3/checks/{checkId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "bankAccountId": "<string>",
  "payeeId": "<string>",
  "categoryId": "<string>",
  "serialNumber": "<string>",
  "issueDate": "2023-12-25",
  "amount": 123,
  "memo": "<string>",
  "note": "<string>",
  "accountNumber": "<string>",
  "invoiceNumber": "<string>",
  "noSign": true,
  "noAmount": true,
  "noDate": true,
  "noPayee": true
}'
{
  "success": true,
  "message": "Successfully updated",
  "data": {
    "checkId": "RJ6qGAyPQzGE1rD"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

checkId
string
required

The ID of the check to update.

Example:

"RJ6qGAyPQzGE1rD"

Body

application/json

Payload to update check details.

The body is of type object.

Response

200
application/json

Check updated successfully.

The response is of type object.