POST
/
api
/
v1
/
actions
/
{action_id}
/
device-latencies
curl --request POST \
  --url https://cloud.bytebeam.io/api/v1/actions/{action_id}/device-latencies \
  --header 'Content-Type: application/json' \
  --header 'x-bytebeam-api-key: <api-key>' \
  --header 'x-bytebeam-tenant: <api-key>' \
  --data '{
  "state": "<string>",
  "buckets_count": 123
}'
[
  {
    "range_start": 123,
    "range_end": 123,
    "height": 123
  }
]

Authorizations

x-bytebeam-api-key
string
header
required

API key required to authenticate requests.

x-bytebeam-tenant
string
header
required

Tenant(Project) name required to identify the project.

Path Parameters

action_id
string
required

Body

state
string
required
buckets_count
integer
required

Response

200
application/json
range_start
number
required
range_end
number
required
height
number
required