Circuit Test Schedule

Create

Create a new Circuit Test Schedule record.

post/api/cp/circuit-test-schedule

Request body

idinteger

Id

account_idinteger

Account Id (references account.id)

provider_idinteger

Provider Id

card_idstring

Card Id (references card.id)

namestring required

Name

schedulestring

Schedule

clistring

Cli

dest_numberstring

Dest Number

intervalinteger

Interval

Example request

{
  "id": 12345,
  "account_id": 1,
  "provider_id": 1,
  "card_id": 1,
  "name": "Example Name",
  "schedule": "example_schedule",
  "cli": "example_cli",
  "dest_number": "example_dest_number",
  "interval": 1
}

Response

Successful response

statusstring

Operation status

Example response

{
  "id": 12345,
  "status": "OK"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.