Skip to main content
PATCH
/
v1
/
monitoring
/
schedules
/
{id}
/
authorizers
Remove authorizers from a schedule
curl --request PATCH \
  --url https://api.rightfoot.com/v1/monitoring/schedules/{id}/authorizers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "authorizer_unique_ids": [
    "auth-123",
    "auth-456",
    "auth-789"
  ]
}
'
{
  "removed_count": 3,
  "remaining_count": 147
}

Remove Schedule Authorizers

Remove specific authorizers from an existing scheduled balance request. The schedule will continue running for any remaining authorizers.

Use Cases

  • Stop monitoring specific accounts while keeping the schedule active for others
  • Clean up authorizers that are no longer needed
  • Reduce the scope of an existing schedule without recreating it

Response Fields

FieldDescription
removed_countNumber of authorizers successfully removed from the schedule
remaining_countNumber of authorizers still in the schedule after removal

Authorizations

Authorization
string
header
required

Authentication to the API is performed via Bearer Token Authentication. Provide your API key as the bearer token in the Authorization header.

All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.

Path Parameters

id
string<uuid>
required

The schedule ID (UUID) returned when creating the scheduled balance request.

Body

application/json
authorizer_unique_ids
string[]
required

List of authorizer unique IDs to remove from the schedule.

Response

Authorizers removed successfully

removed_count
integer
required

Number of authorizers successfully removed from the schedule.

remaining_count
integer
required

Number of authorizers still in the schedule after removal.