Create a field-service order and return its status URL. HTTP 201 returns a created order; HTTP 202 returns an order accepted_pending_fulfilment with fulfilled=false. Order creation requires a provisioned integration key through x-api-key. MCP also accepts that key through Authorization: Bearer; direct REST order creation requires x-api-key. A self-serve OAuth token authenticates but is not entitled to create orders: HTTP 402 payment_required (JSON-RPC -32002 over MCP). Anonymous callers receive HTTP 401 with WWW-Authenticate. Provisioning contact: hello@steadywrk.app.
Input JSON-Schema
{
"type": "object",
"required": [
"trade",
"location",
"description"
],
"properties": {
"trade": {
"type": "string"
},
"location": {
"type": "object",
"required": [
"state"
],
"properties": {
"state": {
"type": "string",
"minLength": 2,
"maxLength": 2
},
"zip": {
"type": "string",
"maxLength": 10
},
"city": {
"type": "string",
"maxLength": 255
},
"address": {
"type": "string",
"maxLength": 1000
},
"name": {
"type": "string",
"maxLength": 500
}
}
},
"urgency": {
"type": "string",
"enum": [
"emergency",
"urgent",
"routine",
"scheduled"
],
"default": "routine"
},
"nte_cents": {
"type": "integer",
"minimum": 1
},
"description": {
"type": "string",
"minLength": 1,
"maxLength": 5000
},
"callback_url": {
"type": "string",
"format": "uri"
},
"reference_id": {
"type": "string",
"maxLength": 255
}
}
}