action billbee_order_api_update_state { label: "Changes the main state of a single order" description: "### REMARKS ### \nUse this call to change the state of an order to i.e. paid or sent. \n \nThe state is transfered to the external shop/marketplace if configured. \nThis is the list of known states: \n- 1: ordered \n- 2: confirmed \n- 3: paid \n- 4: shipped \n- 5: reclamation \n- 6: deleted \n- 7: closed \n- 8: canceled \n- 9: archived \n- 10: not used \n- 11: demand note 1 \n- 12: demand note 2 \n- 13: packed \n- 14: offered \n- 15: payment reminder \n- 16: fulfilling" provider: billbee method: PUT path: "/api/v1/orders/{id}/orderstate" encoding: form input: { type: "object" properties: { NewStateId: { type: "integer" format: "int32" description: "The new state to set" enum: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] } id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" } }