# Sales Orders

Sales Orders

## POST /v1/sales-orders/

>

```json
{"openapi":"3.0.0","info":{"title":"Supply'd API","version":"1.0"},"tags":[{"name":"Sales Orders","description":"Sales Orders"}],"paths":{"/v1/sales-orders/":{"post":{"tags":["Sales Orders"],"operationId":"ff98f98a173515b58eada5f21fdd8385","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateSalesOrder"}}}},"responses":{"201":{"description":"Created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SalesOrder"}}}}}}}},"components":{"schemas":{"CreateSalesOrder":{"required":["customer","line_items"],"properties":{"customer":{"type":"string"},"pick_location":{"type":"string","default":null,"nullable":true},"shipping_location":{"type":"string","default":null,"nullable":true},"delivery_date":{"type":"string","default":null,"nullable":true},"shipping_name":{"type":"string","default":null,"nullable":true},"shipping_fee":{"type":"number","default":null,"nullable":true},"shipping_fee_tax":{"type":"number","default":null,"nullable":true},"invoice_due_at":{"type":"string","default":null,"nullable":true},"payment_method":{"type":"string","default":null,"nullable":true},"reference":{"type":"string","default":null,"nullable":true},"notes":{"type":"string","default":null,"nullable":true},"status":{"type":"string","default":"DRAFT"},"line_items":{"type":"array","items":{"$ref":"#/components/schemas/CreateSalesOrderLineItem"}}},"type":"object"},"CreateSalesOrderLineItem":{"required":["product_id","qty"],"properties":{"product_id":{"type":"integer"},"qty":{"type":"number"},"carton_qty":{"type":"number","default":null,"nullable":true},"carton_price":{"type":"number","default":null,"nullable":true}},"type":"object"},"SalesOrder":{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/SalesOrderType"},"supplier_id":{"type":"integer"},"order_number":{"type":"string","nullable":true},"source":{"type":"string","nullable":true},"status":{"type":"string","nullable":true},"reference":{"type":"string","nullable":true},"created_at":{"type":"string","format":"datetime"},"modified_at":{"type":"string","format":"datetime"},"invoice_due_at":{"type":"string","format":"datetime","nullable":true},"shipped_at":{"type":"string","format":"datetime","nullable":true},"paid_at":{"type":"string","format":"datetime","nullable":true},"completed_at":{"type":"string","format":"datetime","nullable":true},"pick_location_id":{"type":"string","nullable":true},"pick_location_name":{"type":"string","nullable":true},"delivery_date":{"type":"string","format":"datetime","nullable":true},"currency":{"type":"string"},"amount":{"type":"number"},"amount_notax":{"type":"number"},"amount_tax":{"type":"number"},"amount_paid":{"type":"number","nullable":true},"payment_method":{"type":"string","nullable":true},"shipping_name":{"type":"string","nullable":true},"shipping_fee":{"type":"number","nullable":true},"shipping_fee_notax":{"type":"number","nullable":true},"shipping_fee_tax":{"type":"number","nullable":true},"credit_card_fee":{"type":"number","nullable":true},"credit_card_fee_notax":{"type":"number","nullable":true},"credit_card_fee_tax":{"type":"number","nullable":true},"credit":{"type":"number","nullable":true},"credit_notax":{"type":"number","nullable":true},"credit_tax":{"type":"number","nullable":true},"notes":{"type":"string"},"last_modified_at":{"type":"string","nullable":true},"line_items":{"type":"array","items":{"$ref":"#/components/schemas/SalesOrderLineItem"}},"customer":{"$ref":"#/components/schemas/SalesOrderCustomer"}},"type":"object"},"SalesOrderType":{"type":"string","enum":["Internal","External","Sale"]},"SalesOrderLineItem":{"properties":{"id":{"type":"integer"},"order_id":{"type":"integer"},"product_id":{"type":"integer","nullable":true},"sku":{"type":"string"},"barcode":{"type":"string"},"name":{"type":"string"},"qty":{"type":"number"},"carton_qty":{"type":"number"},"carton_price":{"type":"number"},"amount":{"type":"number","nullable":true},"amount_notax":{"type":"number","nullable":true},"amount_tax":{"type":"number","nullable":true}},"type":"object"},"SalesOrderCustomer":{"type":"object","allOf":[{"$ref":"#/components/schemas/Customer"},{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/CustomerType"},"name":{"type":"string"},"abn":{"type":"string","nullable":true},"account_number":{"type":"string","nullable":true},"website":{"type":"string","nullable":true},"logo_url":{"type":"string","nullable":true},"payment_terms":{"type":"integer"},"payment_terms_period":{"type":"string"},"credit_hold":{"type":"boolean"},"notes":{"type":"string","nullable":true},"last_modified_at":{"type":"string","nullable":true},"contacts":{"type":"array","items":{"$ref":"#/components/schemas/Contact"}},"locations":{"type":"array","items":{"$ref":"#/components/schemas/Location"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/CustomerGroup"}},"billing_location":{"oneOf":[{"$ref":"#/components/schemas/Location"}],"nullable":true},"shipping_location":{"oneOf":[{"$ref":"#/components/schemas/Location"}],"nullable":true}},"type":"object"}]},"Customer":{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/CustomerType"},"name":{"type":"string"},"abn":{"type":"string","nullable":true},"account_number":{"type":"string","nullable":true},"website":{"type":"string","nullable":true},"logo_url":{"type":"string","nullable":true},"payment_terms":{"type":"integer"},"payment_terms_period":{"type":"string"},"credit_hold":{"type":"boolean"},"notes":{"type":"string","nullable":true},"last_modified_at":{"type":"string","nullable":true},"contacts":{"type":"array","items":{"$ref":"#/components/schemas/Contact"}},"locations":{"type":"array","items":{"$ref":"#/components/schemas/Location"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/CustomerGroup"}}},"type":"object"},"CustomerType":{"type":"string","enum":["Internal","External","Custom"]},"Contact":{"properties":{"first_name":{"type":"string"},"last_name":{"type":"string"},"email":{"type":"string","nullable":true},"phone":{"type":"string","nullable":true},"mobile_area":{"type":"string","nullable":true},"mobile_number":{"type":"string","nullable":true},"role":{"type":"string","nullable":true}},"type":"object"},"Location":{"properties":{"id":{"type":"string","nullable":true},"name":{"type":"string"},"is_billing":{"type":"boolean"},"is_shipping":{"type":"boolean"},"manage_stock":{"type":"boolean"},"address":{"type":"string"},"suburb":{"type":"string"},"state":{"type":"string"},"postcode":{"type":"string"},"country":{"type":"string"},"location":{"type":"object","nullable":true},"opening_hours":{"type":"object","nullable":true}},"type":"object"},"CustomerGroup":{"properties":{"id":{"type":"integer"},"name":{"type":"string"}},"type":"object"}}}}
```

## GET /v1/sales-orders/get

>

```json
{"openapi":"3.0.0","info":{"title":"Supply'd API","version":"1.0"},"tags":[{"name":"Sales Orders","description":"Sales Orders"}],"paths":{"/v1/sales-orders/get":{"get":{"tags":["Sales Orders"],"operationId":"f8d644604617e9b56cb04a0896a61588","parameters":[{"name":"id","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SalesOrder"}}}}}}}},"components":{"schemas":{"SalesOrder":{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/SalesOrderType"},"supplier_id":{"type":"integer"},"order_number":{"type":"string","nullable":true},"source":{"type":"string","nullable":true},"status":{"type":"string","nullable":true},"reference":{"type":"string","nullable":true},"created_at":{"type":"string","format":"datetime"},"modified_at":{"type":"string","format":"datetime"},"invoice_due_at":{"type":"string","format":"datetime","nullable":true},"shipped_at":{"type":"string","format":"datetime","nullable":true},"paid_at":{"type":"string","format":"datetime","nullable":true},"completed_at":{"type":"string","format":"datetime","nullable":true},"pick_location_id":{"type":"string","nullable":true},"pick_location_name":{"type":"string","nullable":true},"delivery_date":{"type":"string","format":"datetime","nullable":true},"currency":{"type":"string"},"amount":{"type":"number"},"amount_notax":{"type":"number"},"amount_tax":{"type":"number"},"amount_paid":{"type":"number","nullable":true},"payment_method":{"type":"string","nullable":true},"shipping_name":{"type":"string","nullable":true},"shipping_fee":{"type":"number","nullable":true},"shipping_fee_notax":{"type":"number","nullable":true},"shipping_fee_tax":{"type":"number","nullable":true},"credit_card_fee":{"type":"number","nullable":true},"credit_card_fee_notax":{"type":"number","nullable":true},"credit_card_fee_tax":{"type":"number","nullable":true},"credit":{"type":"number","nullable":true},"credit_notax":{"type":"number","nullable":true},"credit_tax":{"type":"number","nullable":true},"notes":{"type":"string"},"last_modified_at":{"type":"string","nullable":true},"line_items":{"type":"array","items":{"$ref":"#/components/schemas/SalesOrderLineItem"}},"customer":{"$ref":"#/components/schemas/SalesOrderCustomer"}},"type":"object"},"SalesOrderType":{"type":"string","enum":["Internal","External","Sale"]},"SalesOrderLineItem":{"properties":{"id":{"type":"integer"},"order_id":{"type":"integer"},"product_id":{"type":"integer","nullable":true},"sku":{"type":"string"},"barcode":{"type":"string"},"name":{"type":"string"},"qty":{"type":"number"},"carton_qty":{"type":"number"},"carton_price":{"type":"number"},"amount":{"type":"number","nullable":true},"amount_notax":{"type":"number","nullable":true},"amount_tax":{"type":"number","nullable":true}},"type":"object"},"SalesOrderCustomer":{"type":"object","allOf":[{"$ref":"#/components/schemas/Customer"},{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/CustomerType"},"name":{"type":"string"},"abn":{"type":"string","nullable":true},"account_number":{"type":"string","nullable":true},"website":{"type":"string","nullable":true},"logo_url":{"type":"string","nullable":true},"payment_terms":{"type":"integer"},"payment_terms_period":{"type":"string"},"credit_hold":{"type":"boolean"},"notes":{"type":"string","nullable":true},"last_modified_at":{"type":"string","nullable":true},"contacts":{"type":"array","items":{"$ref":"#/components/schemas/Contact"}},"locations":{"type":"array","items":{"$ref":"#/components/schemas/Location"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/CustomerGroup"}},"billing_location":{"oneOf":[{"$ref":"#/components/schemas/Location"}],"nullable":true},"shipping_location":{"oneOf":[{"$ref":"#/components/schemas/Location"}],"nullable":true}},"type":"object"}]},"Customer":{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/CustomerType"},"name":{"type":"string"},"abn":{"type":"string","nullable":true},"account_number":{"type":"string","nullable":true},"website":{"type":"string","nullable":true},"logo_url":{"type":"string","nullable":true},"payment_terms":{"type":"integer"},"payment_terms_period":{"type":"string"},"credit_hold":{"type":"boolean"},"notes":{"type":"string","nullable":true},"last_modified_at":{"type":"string","nullable":true},"contacts":{"type":"array","items":{"$ref":"#/components/schemas/Contact"}},"locations":{"type":"array","items":{"$ref":"#/components/schemas/Location"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/CustomerGroup"}}},"type":"object"},"CustomerType":{"type":"string","enum":["Internal","External","Custom"]},"Contact":{"properties":{"first_name":{"type":"string"},"last_name":{"type":"string"},"email":{"type":"string","nullable":true},"phone":{"type":"string","nullable":true},"mobile_area":{"type":"string","nullable":true},"mobile_number":{"type":"string","nullable":true},"role":{"type":"string","nullable":true}},"type":"object"},"Location":{"properties":{"id":{"type":"string","nullable":true},"name":{"type":"string"},"is_billing":{"type":"boolean"},"is_shipping":{"type":"boolean"},"manage_stock":{"type":"boolean"},"address":{"type":"string"},"suburb":{"type":"string"},"state":{"type":"string"},"postcode":{"type":"string"},"country":{"type":"string"},"location":{"type":"object","nullable":true},"opening_hours":{"type":"object","nullable":true}},"type":"object"},"CustomerGroup":{"properties":{"id":{"type":"integer"},"name":{"type":"string"}},"type":"object"}}}}
```

## GET /v1/sales-orders/latest

>

```json
{"openapi":"3.0.0","info":{"title":"Supply'd API","version":"1.0"},"tags":[{"name":"Sales Orders","description":"Sales Orders"}],"paths":{"/v1/sales-orders/latest":{"get":{"tags":["Sales Orders"],"operationId":"1415aa8d01d150126916080015ac3c66","parameters":[{"name":"page","in":"query","schema":{"type":"integer"}}],"responses":{"200":{"description":"OK","headers":{"Link":{"description":"Next page of results","schema":{"type":"string","format":"uri-reference"}}},"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/SalesOrder"}}}}}}}}},"components":{"schemas":{"SalesOrder":{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/SalesOrderType"},"supplier_id":{"type":"integer"},"order_number":{"type":"string","nullable":true},"source":{"type":"string","nullable":true},"status":{"type":"string","nullable":true},"reference":{"type":"string","nullable":true},"created_at":{"type":"string","format":"datetime"},"modified_at":{"type":"string","format":"datetime"},"invoice_due_at":{"type":"string","format":"datetime","nullable":true},"shipped_at":{"type":"string","format":"datetime","nullable":true},"paid_at":{"type":"string","format":"datetime","nullable":true},"completed_at":{"type":"string","format":"datetime","nullable":true},"pick_location_id":{"type":"string","nullable":true},"pick_location_name":{"type":"string","nullable":true},"delivery_date":{"type":"string","format":"datetime","nullable":true},"currency":{"type":"string"},"amount":{"type":"number"},"amount_notax":{"type":"number"},"amount_tax":{"type":"number"},"amount_paid":{"type":"number","nullable":true},"payment_method":{"type":"string","nullable":true},"shipping_name":{"type":"string","nullable":true},"shipping_fee":{"type":"number","nullable":true},"shipping_fee_notax":{"type":"number","nullable":true},"shipping_fee_tax":{"type":"number","nullable":true},"credit_card_fee":{"type":"number","nullable":true},"credit_card_fee_notax":{"type":"number","nullable":true},"credit_card_fee_tax":{"type":"number","nullable":true},"credit":{"type":"number","nullable":true},"credit_notax":{"type":"number","nullable":true},"credit_tax":{"type":"number","nullable":true},"notes":{"type":"string"},"last_modified_at":{"type":"string","nullable":true},"line_items":{"type":"array","items":{"$ref":"#/components/schemas/SalesOrderLineItem"}},"customer":{"$ref":"#/components/schemas/SalesOrderCustomer"}},"type":"object"},"SalesOrderType":{"type":"string","enum":["Internal","External","Sale"]},"SalesOrderLineItem":{"properties":{"id":{"type":"integer"},"order_id":{"type":"integer"},"product_id":{"type":"integer","nullable":true},"sku":{"type":"string"},"barcode":{"type":"string"},"name":{"type":"string"},"qty":{"type":"number"},"carton_qty":{"type":"number"},"carton_price":{"type":"number"},"amount":{"type":"number","nullable":true},"amount_notax":{"type":"number","nullable":true},"amount_tax":{"type":"number","nullable":true}},"type":"object"},"SalesOrderCustomer":{"type":"object","allOf":[{"$ref":"#/components/schemas/Customer"},{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/CustomerType"},"name":{"type":"string"},"abn":{"type":"string","nullable":true},"account_number":{"type":"string","nullable":true},"website":{"type":"string","nullable":true},"logo_url":{"type":"string","nullable":true},"payment_terms":{"type":"integer"},"payment_terms_period":{"type":"string"},"credit_hold":{"type":"boolean"},"notes":{"type":"string","nullable":true},"last_modified_at":{"type":"string","nullable":true},"contacts":{"type":"array","items":{"$ref":"#/components/schemas/Contact"}},"locations":{"type":"array","items":{"$ref":"#/components/schemas/Location"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/CustomerGroup"}},"billing_location":{"oneOf":[{"$ref":"#/components/schemas/Location"}],"nullable":true},"shipping_location":{"oneOf":[{"$ref":"#/components/schemas/Location"}],"nullable":true}},"type":"object"}]},"Customer":{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/CustomerType"},"name":{"type":"string"},"abn":{"type":"string","nullable":true},"account_number":{"type":"string","nullable":true},"website":{"type":"string","nullable":true},"logo_url":{"type":"string","nullable":true},"payment_terms":{"type":"integer"},"payment_terms_period":{"type":"string"},"credit_hold":{"type":"boolean"},"notes":{"type":"string","nullable":true},"last_modified_at":{"type":"string","nullable":true},"contacts":{"type":"array","items":{"$ref":"#/components/schemas/Contact"}},"locations":{"type":"array","items":{"$ref":"#/components/schemas/Location"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/CustomerGroup"}}},"type":"object"},"CustomerType":{"type":"string","enum":["Internal","External","Custom"]},"Contact":{"properties":{"first_name":{"type":"string"},"last_name":{"type":"string"},"email":{"type":"string","nullable":true},"phone":{"type":"string","nullable":true},"mobile_area":{"type":"string","nullable":true},"mobile_number":{"type":"string","nullable":true},"role":{"type":"string","nullable":true}},"type":"object"},"Location":{"properties":{"id":{"type":"string","nullable":true},"name":{"type":"string"},"is_billing":{"type":"boolean"},"is_shipping":{"type":"boolean"},"manage_stock":{"type":"boolean"},"address":{"type":"string"},"suburb":{"type":"string"},"state":{"type":"string"},"postcode":{"type":"string"},"country":{"type":"string"},"location":{"type":"object","nullable":true},"opening_hours":{"type":"object","nullable":true}},"type":"object"},"CustomerGroup":{"properties":{"id":{"type":"integer"},"name":{"type":"string"}},"type":"object"}}}}
```

## PUT /v1/sales-orders/modify

>

```json
{"openapi":"3.0.0","info":{"title":"Supply'd API","version":"1.0"},"tags":[{"name":"Sales Orders","description":"Sales Orders"}],"paths":{"/v1/sales-orders/modify":{"put":{"tags":["Sales Orders"],"operationId":"c23893a6f5872e29d5d81795b4f0fb7a","parameters":[{"name":"id","in":"query","required":true,"schema":{"type":"string"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateSalesOrder"}}}},"responses":{"202":{"description":"Accepted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SalesOrder"}}}}}}}},"components":{"schemas":{"UpdateSalesOrder":{"required":["line_items"],"properties":{"shipping_location":{"type":"string","default":null,"nullable":true},"delivery_date":{"type":"string","default":null,"nullable":true},"shipping_name":{"type":"string","default":null,"nullable":true},"shipping_fee":{"type":"number","default":null,"nullable":true},"shipping_fee_tax":{"type":"number","default":null,"nullable":true},"invoice_due_at":{"type":"string","default":null,"nullable":true},"payment_method":{"type":"string","default":null,"nullable":true},"notes":{"type":"string","default":null,"nullable":true},"status":{"type":"status","default":null,"nullable":true},"line_items":{"type":"array","items":{"$ref":"#/components/schemas/UpdateSalesOrderLineItem"}}},"type":"object"},"UpdateSalesOrderLineItem":{"required":["id"],"properties":{"id":{"type":"integer"},"qty":{"type":"number","default":null,"nullable":true},"carton_qty":{"type":"number","default":null,"nullable":true},"carton_price":{"type":"number","default":null,"nullable":true}},"type":"object"},"SalesOrder":{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/SalesOrderType"},"supplier_id":{"type":"integer"},"order_number":{"type":"string","nullable":true},"source":{"type":"string","nullable":true},"status":{"type":"string","nullable":true},"reference":{"type":"string","nullable":true},"created_at":{"type":"string","format":"datetime"},"modified_at":{"type":"string","format":"datetime"},"invoice_due_at":{"type":"string","format":"datetime","nullable":true},"shipped_at":{"type":"string","format":"datetime","nullable":true},"paid_at":{"type":"string","format":"datetime","nullable":true},"completed_at":{"type":"string","format":"datetime","nullable":true},"pick_location_id":{"type":"string","nullable":true},"pick_location_name":{"type":"string","nullable":true},"delivery_date":{"type":"string","format":"datetime","nullable":true},"currency":{"type":"string"},"amount":{"type":"number"},"amount_notax":{"type":"number"},"amount_tax":{"type":"number"},"amount_paid":{"type":"number","nullable":true},"payment_method":{"type":"string","nullable":true},"shipping_name":{"type":"string","nullable":true},"shipping_fee":{"type":"number","nullable":true},"shipping_fee_notax":{"type":"number","nullable":true},"shipping_fee_tax":{"type":"number","nullable":true},"credit_card_fee":{"type":"number","nullable":true},"credit_card_fee_notax":{"type":"number","nullable":true},"credit_card_fee_tax":{"type":"number","nullable":true},"credit":{"type":"number","nullable":true},"credit_notax":{"type":"number","nullable":true},"credit_tax":{"type":"number","nullable":true},"notes":{"type":"string"},"last_modified_at":{"type":"string","nullable":true},"line_items":{"type":"array","items":{"$ref":"#/components/schemas/SalesOrderLineItem"}},"customer":{"$ref":"#/components/schemas/SalesOrderCustomer"}},"type":"object"},"SalesOrderType":{"type":"string","enum":["Internal","External","Sale"]},"SalesOrderLineItem":{"properties":{"id":{"type":"integer"},"order_id":{"type":"integer"},"product_id":{"type":"integer","nullable":true},"sku":{"type":"string"},"barcode":{"type":"string"},"name":{"type":"string"},"qty":{"type":"number"},"carton_qty":{"type":"number"},"carton_price":{"type":"number"},"amount":{"type":"number","nullable":true},"amount_notax":{"type":"number","nullable":true},"amount_tax":{"type":"number","nullable":true}},"type":"object"},"SalesOrderCustomer":{"type":"object","allOf":[{"$ref":"#/components/schemas/Customer"},{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/CustomerType"},"name":{"type":"string"},"abn":{"type":"string","nullable":true},"account_number":{"type":"string","nullable":true},"website":{"type":"string","nullable":true},"logo_url":{"type":"string","nullable":true},"payment_terms":{"type":"integer"},"payment_terms_period":{"type":"string"},"credit_hold":{"type":"boolean"},"notes":{"type":"string","nullable":true},"last_modified_at":{"type":"string","nullable":true},"contacts":{"type":"array","items":{"$ref":"#/components/schemas/Contact"}},"locations":{"type":"array","items":{"$ref":"#/components/schemas/Location"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/CustomerGroup"}},"billing_location":{"oneOf":[{"$ref":"#/components/schemas/Location"}],"nullable":true},"shipping_location":{"oneOf":[{"$ref":"#/components/schemas/Location"}],"nullable":true}},"type":"object"}]},"Customer":{"properties":{"id":{"type":"string"},"type":{"$ref":"#/components/schemas/CustomerType"},"name":{"type":"string"},"abn":{"type":"string","nullable":true},"account_number":{"type":"string","nullable":true},"website":{"type":"string","nullable":true},"logo_url":{"type":"string","nullable":true},"payment_terms":{"type":"integer"},"payment_terms_period":{"type":"string"},"credit_hold":{"type":"boolean"},"notes":{"type":"string","nullable":true},"last_modified_at":{"type":"string","nullable":true},"contacts":{"type":"array","items":{"$ref":"#/components/schemas/Contact"}},"locations":{"type":"array","items":{"$ref":"#/components/schemas/Location"}},"groups":{"type":"array","items":{"$ref":"#/components/schemas/CustomerGroup"}}},"type":"object"},"CustomerType":{"type":"string","enum":["Internal","External","Custom"]},"Contact":{"properties":{"first_name":{"type":"string"},"last_name":{"type":"string"},"email":{"type":"string","nullable":true},"phone":{"type":"string","nullable":true},"mobile_area":{"type":"string","nullable":true},"mobile_number":{"type":"string","nullable":true},"role":{"type":"string","nullable":true}},"type":"object"},"Location":{"properties":{"id":{"type":"string","nullable":true},"name":{"type":"string"},"is_billing":{"type":"boolean"},"is_shipping":{"type":"boolean"},"manage_stock":{"type":"boolean"},"address":{"type":"string"},"suburb":{"type":"string"},"state":{"type":"string"},"postcode":{"type":"string"},"country":{"type":"string"},"location":{"type":"object","nullable":true},"opening_hours":{"type":"object","nullable":true}},"type":"object"},"CustomerGroup":{"properties":{"id":{"type":"integer"},"name":{"type":"string"}},"type":"object"}}}}
```

## DELETE /v1/sales-orders/modify

>

```json
{"openapi":"3.0.0","info":{"title":"Supply'd API","version":"1.0"},"tags":[{"name":"Sales Orders","description":"Sales Orders"}],"paths":{"/v1/sales-orders/modify":{"delete":{"tags":["Sales Orders"],"operationId":"7e9bbe1199efb9e8af88d82a51253475","parameters":[{"name":"id","in":"query","required":true,"schema":{"type":"string"}}],"responses":{"202":{"description":"Accepted"}}}}}}
```
