Skip to main content
POST
/
api
/
v1
/
accounts
/
{account-id}
/
auto-claims
/
{schedule-id}
/
skips
Skip an auto-claim on a date or period
curl --request POST \
  --url https://app.crown-brlv.com/api/v1/accounts/{account-id}/auto-claims/{schedule-id}/skips \
  --header 'Content-Type: application/json' \
  --data '
{
  "date": "2026-07-01",
  "from": "2026-07-01",
  "to": "2026-07-15",
  "reason": "<string>"
}
'
{
  "auto-claim-skip": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "starts-on": "2026-07-01",
    "ends-on": "2026-07-15",
    "reason": "<string>",
    "created-at": "<string>"
  }
}

Path Parameters

account-id
string<uuid>
required
schedule-id
string<uuid>
required

Body

application/json
date
string

Single day to skip (YYYY-MM-DD); shorthand for from=to

Example:

"2026-07-01"

from
string

Start of the skip window, inclusive (YYYY-MM-DD)

Example:

"2026-07-01"

to
string

End of the skip window, inclusive (YYYY-MM-DD)

Example:

"2026-07-15"

reason
string

Optional note recorded with the skip

Response

Skip window created

auto-claim-skip
object
required

The created skip window