sdk.tasking_order.approve()
elements.sdk.api.tasking_order
Approve a tasking order.
Approve a pending tasking order to submit it to the satellite provider. Once approved, the satellite provider will schedule the acquisition.
Parameters
- tasking_order_id (str) - The tasking order ID to approve
- comment (str) - A comment explaining the approval
Returns
None
Example(s)
# Approve a pending tasking order
await sdk.tasking_order.approve(
tasking_order_id="tasking-order-uuid",
comment="Approved for monitoring project"
)Updated 6 months ago