✔️ 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

KeyDatatypeRequiredDescription
x-bytebeam-tenantstring
x-bytebeam-api-keystring

RESPONSES

status: OK

{&quot;params&quot;:&quot;{\&quot;content-length\&quot;:0,\&quot;checksum\&quot;:\&quot;e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\&quot;,\&quot;status\&quot;:false,\&quot;url\&quot;:\&quot;https://firmware.bytebeam.io/api/v1/firmwares/x.x.x/artifact\&quot;,\&quot;version\&quot;:\&quot;x.x.x\&quot;}&quot;}