curl --request GET \
--url https://api.myscalev.com/v3/orders/{id}/actions \
--header 'Authorization: Bearer <token>'{
"id": 123,
"is_digital_product_present": true,
"is_lms_product_present": true,
"is_physical_product_present": true,
"order_id": "<string>"
}Requires the order:read machine scope. Retrieve flags to determine available actions for an order.
curl --request GET \
--url https://api.myscalev.com/v3/orders/{id}/actions \
--header 'Authorization: Bearer <token>'{
"id": 123,
"is_digital_product_present": true,
"is_lms_product_present": true,
"is_physical_product_present": true,
"order_id": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.