Skip to main content
PUT
/
checks
/
{checkId}
Update a check
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

Path Parameters

checkId
string
required
Example:

Body

application/json
bankAccountId
string
required
payeeId
string
categoryId
string | null
serialNumber
string
issueDate
string<date>
amount
number
memo
string
note
string
accountNumber
string
invoiceNumber
string
noSign
boolean
noAmount
boolean
noDate
boolean
noPayee
boolean

Response

success
boolean
Example:
message
string
Example:
data
object