✔️ Get params/payload of an action
GET {{host}}{{api-path}}/actions/{{randomExistingActionId}}/params
To fetch an action's params following is passed to the headers:
x-bytebeam-tenant: <tenant>
x-bytebeam-api-key: <your api-key>
The response is an object which returns params as string.
:params
Below is an example of response body:
{
"params": "{\"content-length\":0,\"checksum\":\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\",\"status\":false,\"url\":\"https://firmware.bytebeam.io/api/v1/firmwares/x.x.x/artifact\",\"version\":\"x.x.x\"}"
}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
x-bytebeam-tenant | string | ||
x-bytebeam-api-key | string |
RESPONSES
status: OK
{"params":"{\"content-length\":0,\"checksum\":\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\",\"status\":false,\"url\":\"https://firmware.bytebeam.io/api/v1/firmwares/x.x.x/artifact\",\"version\":\"x.x.x\"}"}