TAG LINE
TAG LINE
SMALL TITLE

Order

(API Version v6)


Represents the linking of an Order which has been created for an Account.


What can you do with Order?

  • DELETE Order/{id}
    Delete an instance of the Order object.

  • GET Order/
    Retrieve all of the Order objects.

  • GET Order/Paged
    Retrieve all of the Order objects in a paged fashion.

  • GET Order/Paged/Detail
    Retrieve all of the Order objects in a paged fashion with all object details.

  • GET Order/{id}
    Retrieve an instance of the Order object by its ID.

  • GET Order/{id}/Detail
    Retrieve deep detail of the Order object by its ID.

  • PATCH Order/{id}
    Update or Add the Order object and optionally make changes to any child objects.

  • POST Order/
    Create a new instance of the Order object.

  • POST Order/Process
    Process an existing draft Order or re-process an existing failed Order.

  • PUT Order/{id}
    Update an existing instance of the Order object.


Properties

Property Details
identity
READ-ONLY
"identity": 17
Type: Number
This is the unique numeric identifier for the Order
ownerId
READ-ONLY
"ownerId": 24
Type: Number
Unique identifier for the associated Owner object.
ownerName
READ-ONLY
"ownerName": "Sample Name"
Type: String
The name of the object associated with the ownerId property.
accountId
"accountId": 12
Type: Number
Unique identifier for the associated Account object.
accountName
"accountName": "Sample Name"
Type: String
The name of the object associated with the accountId property.
contactId
"contactId": 21
Type: Number
Unique identifier for the associated Contact object.
contactName
"contactName": "Sample Name"
Type: String
The name of the object associated with the contactId property.
invoiceId
"invoiceId": 7
Type: Number
Unique identifier for the associated Invoice object.
invoiceName
"invoiceName": "Sample Name"
Type: String
The name of the object associated with the invoiceId property.
orderStatusTypeId
"orderStatusTypeId": 23
Type: Number
Unique identifier for the associated OrderStatusType object.
orderStatusTypeName
"orderStatusTypeName": "Sample Name"
Type: String
The name of the object associated with the orderStatusTypeId property.
companyName
"companyName": "Acme Co."
Type: String
User defined company name assigned to the Order.
externalIdentifier
"externalIdentifier": "124567-23"
Type: String
User defined identifier to be linked to an external ordering system.
completed
"completed": "2021-04-26T15:25:27.587Z"
Type: Date
Date Time Stamp that represents when the Order was billed.

Date and time values are specified in the ISO 8601 format.
purchaseOrderNumber
"purchaseOrderNumber": "PO123454"
Type: String
User defined PO number to be associated with this Order.
totalAmountEstimate
"totalAmountEstimate": 456.67
Type: Number
Estimate pre-tax and prorated charges.
preAuthTransactionIdentifier
"preAuthTransactionIdentifier": "236958"
Type: String
User defined pre-authorization field for user defined information to be attached to an order.
created
READ-ONLY
"created": "2021-04-26T15:25:27.587Z"
Type: Date
This is a system generated date when the record was created. Date and time values are specified in the ISO 8601 format.
createdByUserId
"createdByUserId": 15
Type: Number
Unique identifier for the associated User object.
createdByUserName
"createdByUserName": "Sample Name"
Type: String
The name of the object associated with the createdByUserId property.
statusUpdated
"statusUpdated": "2021-04-26T15:25:27.587Z"
Type: Date
Date Time Stamp that represents the last time the orderStatusTypeId was updated.

Date and time values are specified in the ISO 8601 format.
priceBookId
"priceBookId": 11
Type: Number
Unique identifier for the associated PriceBook object.
priceBookName
"priceBookName": "Sample Name"
Type: String
The name of the object associated with the priceBookId property.
accountContractId
"accountContractId": 25
Type: Number
Unique identifier for the associated AccountContract object.
accountContractName
"accountContractName": "Sample Name"
Type: String
The name of the object associated with the accountContractId property.


Patch Types

The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.

PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the Order object.

Standard PATCH objects:

  • orderManualCharge - create, update, delete
  • orderPackage - create, update, delete

DataFlow PATCH objects:

  • order - create, update, delete
  • orderManualCharge - create, update, delete
  • orderPackage - create, update, delete

End Points

DELETEOrder/{id}
Delete an instance of the Order object. Upon successful delete, this API will return a record of all of the reelated objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system.
{id}Unique identifier for the Order object.
Delete an instance of the Order object.
DELETE Order/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "delete",
    "results": {
        "totalCount": 4,
        "items": [
            {
                "identity": 1,
                "action": "deleted",
                "dtoTypeKey": "order"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETOrder/
Retrieve all of the Order objects.
Retrieve all of the Order objects.
GET Order/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 20,
            "ownerName": "Sample Text Data",
            "accountId": 17,
            "accountName": "Sample Text Data",
            "contactId": 27,
            "contactName": "Sample Text Data",
            "invoiceId": 10,
            "invoiceName": "Sample Text Data",
            "orderStatusTypeId": 7,
            "orderStatusTypeName": "Sample Text Data",
            "companyName": "Acme Co.",
            "externalIdentifier": "124567-23",
            "completed": "2021-04-26T15:25:27.587Z",
            "purchaseOrderNumber": "PO123454",
            "totalAmountEstimate": 456.67,
            "preAuthTransactionIdentifier": "236958",
            "created": "2021-04-26T15:25:27.587Z",
            "createdByUserId": 22,
            "createdByUserName": "Sample Text Data",
            "statusUpdated": "2021-04-26T15:25:27.587Z",
            "priceBookId": 0,
            "priceBookName": "Sample Text Data",
            "accountContractId": 11,
            "accountContractName": "Sample Text Data"
        }
    ]
}
GETOrder/Paged
Retrieve all of the Order objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints.
Retrieve all of the Order objects in a paged fashion.
GET Order/Paged
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 16,
                "ownerName": "Sample Text Data",
                "accountId": 14,
                "accountName": "Sample Text Data",
                "contactId": 15,
                "contactName": "Sample Text Data",
                "invoiceId": 1,
                "invoiceName": "Sample Text Data",
                "orderStatusTypeId": 21,
                "orderStatusTypeName": "Sample Text Data",
                "companyName": "Acme Co.",
                "externalIdentifier": "124567-23",
                "completed": "2021-04-26T15:25:27.587Z",
                "purchaseOrderNumber": "PO123454",
                "totalAmountEstimate": 456.67,
                "preAuthTransactionIdentifier": "236958",
                "created": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 3,
                "createdByUserName": "Sample Text Data",
                "statusUpdated": "2021-04-26T15:25:27.587Z",
                "priceBookId": 26,
                "priceBookName": "Sample Text Data",
                "accountContractId": 24,
                "accountContractName": "Sample Text Data"
            }
        ]
    }
}
GETOrder/Paged/Detail
Retrieve all of the Order objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
Retrieve all of the Order objects in a paged fashion with all object details.
GET Order/Paged/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "pagination": {
        "pageNumber": 1,
        "pageSize": 20,
        "excludeTotalCount": false
    },
    "pagedResults": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 22,
                "ownerName": "Sample Text Data",
                "accountId": 15,
                "accountName": "Sample Text Data",
                "contactId": 0,
                "contactName": "Sample Text Data",
                "invoiceId": 13,
                "invoiceName": "Sample Text Data",
                "orderStatusTypeId": 13,
                "orderStatusTypeName": "Sample Text Data",
                "companyName": "Acme Co.",
                "externalIdentifier": "124567-23",
                "completed": "2021-04-26T15:25:27.587Z",
                "purchaseOrderNumber": "PO123454",
                "totalAmountEstimate": 456.67,
                "preAuthTransactionIdentifier": "236958",
                "created": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 5,
                "createdByUserName": "Sample Text Data",
                "statusUpdated": "2021-04-26T15:25:27.587Z",
                "priceBookId": 18,
                "priceBookName": "Sample Text Data",
                "accountContractId": 18,
                "accountContractName": "Sample Text Data",
                "details": {
                    "orderManualCharges": [
                        {
                            "identity": 64,
                            "orderId": 48,
                            "amount": 68.21,
                            "taxServiceId": 57,
                            "taxServiceName": "Sample Text Data",
                            "invoiceItemId": 97,
                            "quantity": 82,
                            "invoiceItemDetail": "Sample Text Data"
                        }
                    ],
                    "orderPackages": [
                        {
                            "identity": 76,
                            "orderId": 83,
                            "packageFrequencyId": 64,
                            "packageFrequencyName": "Sample Text Data",
                            "quantity": 63,
                            "effective": "2021-04-26T15:25:27.587Z",
                            "accountProductCodeId": 63,
                            "accountProductCodeName": "Sample Text Data",
                            "useBulkQuantity": true,
                            "applyDefaultDiscount": true,
                            "billDay": 85,
                            "usageBillDay": 79,
                            "packageName": "Sample Text Data",
                            "details": {
                                "orderServices": [
                                    {
                                        "identity": 36,
                                        "orderPackageId": 12,
                                        "serviceId": 74,
                                        "serviceName": "Sample Text Data",
                                        "packageServiceId": 33,
                                        "quantity": 31,
                                        "addOnPackageFrequencyId": 90,
                                        "addOnPackageFrequencyName": "Sample Text Data",
                                        "serviceStatusTypeId": 14,
                                        "addOnPackageName": "Sample Text Data",
                                        "serviceStatusTypeName": "Sample Text Data",
                                        "effective": "2021-04-26T15:25:27.587Z",
                                        "details": {
                                            "orderServiceAttributes": [
                                                {
                                                    "identity": 54,
                                                    "orderServiceId": 26,
                                                    "udrUsageIdentifier": "Sample Text Data"
                                                }
                                            ],
                                            "orderServicePrices": [
                                                {
                                                    "identity": 37,
                                                    "orderServiceId": 96,
                                                    "serviceStatusTypeId": 16,
                                                    "serviceStatusTypeName": "Sample Text Data",
                                                    "amount": 37.17,
                                                    "details": {
                                                        "orderServicePriceTiers": [
                                                            {
                                                                "identity": 72,
                                                                "orderServicePriceId": 66,
                                                                "threshold": 99,
                                                                "amount": 56.2
                                                            }
                                                        ]
                                                    }
                                                }
                                            ]
                                        }
                                    }
                                ],
                                "orderPackageAttributes": [
                                    {
                                        "identity": 56,
                                        "orderPackageId": 7,
                                        "usageRatePlanId": 92,
                                        "usageRatePlanName": "Sample Text Data"
                                    }
                                ]
                            }
                        }
                    ],
                    "orderContact": {
                        "identity": 37,
                        "contactTypeId": 71,
                        "contactTypeName": "Sample Text Data",
                        "title": "Sample Text Data",
                        "firstName": "Sample Text Data",
                        "lastName": "Sample Text Data",
                        "isUsedForTax": true,
                        "name": "Sample Text Data",
                        "details": {
                            "contactPoints": [
                                {
                                    "identity": 26,
                                    "contactPointTypeId": 22,
                                    "contactPointTypeName": "Sample Text Data",
                                    "value": "Sample Text Data",
                                    "contactId": 87
                                }
                            ],
                            "address": {
                                "identity": 17,
                                "address1": "Sample Text Data",
                                "address2": "Sample Text Data",
                                "stateId": 14,
                                "stateName": "Sample Text Data",
                                "countryId": 62,
                                "countryName": "Sample Text Data",
                                "zipCode": "Sample Text Data",
                                "latitude": 64.83,
                                "longitude": 87.7,
                                "cityName": "Sample Text Data",
                                "taxJurisdictionCodeUpdated": "2021-04-26T15:25:27.587Z",
                                "isIncorporated": true,
                                "stateCode": "Sample Text Data",
                                "countryCode": "Sample Text Data"
                            }
                        }
                    },
                    "orderTrackingHistory": [
                        {
                            "identity": 3,
                            "success": true,
                            "errorMessage": "Sample Text Data",
                            "started": "2021-04-26T15:25:27.587Z",
                            "completed": "2021-04-26T15:25:27.587Z",
                            "orderId": 47,
                            "createdByUserId": 17,
                            "createdByUserName": "Sample Text Data"
                        }
                    ]
                }
            }
        ]
    }
}
GETOrder/{id}
Retrieve an instance of the Order object by its ID.
{id}Unique identifier for the Order object.
Retrieve an instance of the Order object by its ID.
GET Order/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 1,
        "ownerName": "Sample Text Data",
        "accountId": 23,
        "accountName": "Sample Text Data",
        "contactId": 16,
        "contactName": "Sample Text Data",
        "invoiceId": 21,
        "invoiceName": "Sample Text Data",
        "orderStatusTypeId": 25,
        "orderStatusTypeName": "Sample Text Data",
        "companyName": "Acme Co.",
        "externalIdentifier": "124567-23",
        "completed": "2021-04-26T15:25:27.587Z",
        "purchaseOrderNumber": "PO123454",
        "totalAmountEstimate": 456.67,
        "preAuthTransactionIdentifier": "236958",
        "created": "2021-04-26T15:25:27.587Z",
        "createdByUserId": 1,
        "createdByUserName": "Sample Text Data",
        "statusUpdated": "2021-04-26T15:25:27.587Z",
        "priceBookId": 23,
        "priceBookName": "Sample Text Data",
        "accountContractId": 27,
        "accountContractName": "Sample Text Data"
    }
}
GETOrder/{id}/Detail
Retrieve deep detail of the Order object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
{id}Unique identifier for the Order object.
Retrieve deep detail of the Order object by its ID.
GET Order/{id}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 12,
        "ownerName": "Sample Text Data",
        "accountId": 5,
        "accountName": "Sample Text Data",
        "contactId": 10,
        "contactName": "Sample Text Data",
        "invoiceId": 3,
        "invoiceName": "Sample Text Data",
        "orderStatusTypeId": 24,
        "orderStatusTypeName": "Sample Text Data",
        "companyName": "Acme Co.",
        "externalIdentifier": "124567-23",
        "completed": "2021-04-26T15:25:27.587Z",
        "purchaseOrderNumber": "PO123454",
        "totalAmountEstimate": 456.67,
        "preAuthTransactionIdentifier": "236958",
        "created": "2021-04-26T15:25:27.587Z",
        "createdByUserId": 3,
        "createdByUserName": "Sample Text Data",
        "statusUpdated": "2021-04-26T15:25:27.587Z",
        "priceBookId": 26,
        "priceBookName": "Sample Text Data",
        "accountContractId": 1,
        "accountContractName": "Sample Text Data",
        "details": {
            "orderManualCharges": [
                {
                    "identity": 64,
                    "orderId": 48,
                    "amount": 68.21,
                    "taxServiceId": 57,
                    "taxServiceName": "Sample Text Data",
                    "invoiceItemId": 97,
                    "quantity": 82,
                    "invoiceItemDetail": "Sample Text Data"
                }
            ],
            "orderPackages": [
                {
                    "identity": 76,
                    "orderId": 83,
                    "packageFrequencyId": 64,
                    "packageFrequencyName": "Sample Text Data",
                    "quantity": 63,
                    "effective": "2021-04-26T15:25:27.587Z",
                    "accountProductCodeId": 63,
                    "accountProductCodeName": "Sample Text Data",
                    "useBulkQuantity": true,
                    "applyDefaultDiscount": true,
                    "billDay": 85,
                    "usageBillDay": 79,
                    "packageName": "Sample Text Data",
                    "details": {
                        "orderServices": [
                            {
                                "identity": 36,
                                "orderPackageId": 12,
                                "serviceId": 74,
                                "serviceName": "Sample Text Data",
                                "packageServiceId": 33,
                                "quantity": 31,
                                "addOnPackageFrequencyId": 90,
                                "addOnPackageFrequencyName": "Sample Text Data",
                                "serviceStatusTypeId": 14,
                                "addOnPackageName": "Sample Text Data",
                                "serviceStatusTypeName": "Sample Text Data",
                                "effective": "2021-04-26T15:25:27.587Z",
                                "details": {
                                    "orderServiceAttributes": [
                                        {
                                            "identity": 54,
                                            "orderServiceId": 26,
                                            "udrUsageIdentifier": "Sample Text Data"
                                        }
                                    ],
                                    "orderServicePrices": [
                                        {
                                            "identity": 37,
                                            "orderServiceId": 96,
                                            "serviceStatusTypeId": 16,
                                            "serviceStatusTypeName": "Sample Text Data",
                                            "amount": 37.17,
                                            "details": {
                                                "orderServicePriceTiers": [
                                                    {
                                                        "identity": 72,
                                                        "orderServicePriceId": 66,
                                                        "threshold": 99,
                                                        "amount": 56.2
                                                    }
                                                ]
                                            }
                                        }
                                    ]
                                }
                            }
                        ],
                        "orderPackageAttributes": [
                            {
                                "identity": 56,
                                "orderPackageId": 7,
                                "usageRatePlanId": 92,
                                "usageRatePlanName": "Sample Text Data"
                            }
                        ]
                    }
                }
            ],
            "orderContact": {
                "identity": 37,
                "contactTypeId": 71,
                "contactTypeName": "Sample Text Data",
                "title": "Sample Text Data",
                "firstName": "Sample Text Data",
                "lastName": "Sample Text Data",
                "isUsedForTax": true,
                "name": "Sample Text Data",
                "details": {
                    "contactPoints": [
                        {
                            "identity": 26,
                            "contactPointTypeId": 22,
                            "contactPointTypeName": "Sample Text Data",
                            "value": "Sample Text Data",
                            "contactId": 87
                        }
                    ],
                    "address": {
                        "identity": 17,
                        "address1": "Sample Text Data",
                        "address2": "Sample Text Data",
                        "stateId": 14,
                        "stateName": "Sample Text Data",
                        "countryId": 62,
                        "countryName": "Sample Text Data",
                        "zipCode": "Sample Text Data",
                        "latitude": 64.83,
                        "longitude": 87.7,
                        "cityName": "Sample Text Data",
                        "taxJurisdictionCodeUpdated": "2021-04-26T15:25:27.587Z",
                        "isIncorporated": true,
                        "stateCode": "Sample Text Data",
                        "countryCode": "Sample Text Data"
                    }
                }
            },
            "orderTrackingHistory": [
                {
                    "identity": 3,
                    "success": true,
                    "errorMessage": "Sample Text Data",
                    "started": "2021-04-26T15:25:27.587Z",
                    "completed": "2021-04-26T15:25:27.587Z",
                    "orderId": 47,
                    "createdByUserId": 17,
                    "createdByUserName": "Sample Text Data"
                }
            ]
        }
    }
}
PATCHOrder/{id}
Update or Add the Order object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array.
{id}Unique identifier for the Order object.
Update or Add the Order object and optionally make changes to any child objects.
PATCH Order/{id}

{
    "details": {},
    "orders": {
        "items": [
            {
                "patchType": "create",
                "patchClientId": 1,
                "accountId": 12,
                "contactId": 21,
                "invoiceId": 22,
                "orderStatusTypeId": 27,
                "companyName": "Acme Co.",
                "externalIdentifier": "124567-23",
                "completed": "2021-04-26T15:25:27.587Z",
                "purchaseOrderNumber": "PO123454",
                "totalAmountEstimate": 456.67,
                "preAuthTransactionIdentifier": "236958",
                "createdByUserId": 19,
                "statusUpdated": "2021-04-26T15:25:27.587Z",
                "priceBookId": 4,
                "accountContractId": 8
            }
        ]
    }
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "patch",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "action": "created",
                "dtoTypeKey": "order",
                "instance": {
                    "identity": 1,
                    "ownerId": 11,
                    "ownerName": "Sample Text Data",
                    "accountId": 19,
                    "accountName": "Sample Text Data",
                    "contactId": 11,
                    "contactName": "Sample Text Data",
                    "invoiceId": 18,
                    "invoiceName": "Sample Text Data",
                    "orderStatusTypeId": 6,
                    "orderStatusTypeName": "Sample Text Data",
                    "companyName": "Acme Co.",
                    "externalIdentifier": "124567-23",
                    "completed": "2021-04-26T15:25:27.587Z",
                    "purchaseOrderNumber": "PO123454",
                    "totalAmountEstimate": 456.67,
                    "preAuthTransactionIdentifier": "236958",
                    "created": "2021-04-26T15:25:27.587Z",
                    "createdByUserId": 17,
                    "createdByUserName": "Sample Text Data",
                    "statusUpdated": "2021-04-26T15:25:27.587Z",
                    "priceBookId": 4,
                    "priceBookName": "Sample Text Data",
                    "accountContractId": 19,
                    "accountContractName": "Sample Text Data"
                }
            }
        ]
    }
}
POSTOrder/
Create a new instance of the Order object.
Create a new instance of the Order object.
POST Order/

{
    "accountId": 25,
    "contactId": 4,
    "invoiceId": 8,
    "orderStatusTypeId": 23,
    "companyName": "Acme Co.",
    "externalIdentifier": "124567-23",
    "completed": "2021-04-26T15:25:27.587Z",
    "purchaseOrderNumber": "PO123454",
    "totalAmountEstimate": 456.67,
    "preAuthTransactionIdentifier": "236958",
    "createdByUserId": 1,
    "statusUpdated": "2021-04-26T15:25:27.587Z",
    "details": {
        "orderPackages": {
            "items": [
                {
                    "packageName": "DSL Package",
                    "packageFrequencyName": "DSL Package - 1 Month",
                    "quantity": 50
                }
            ]
        }
    }
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 19,
                "ownerName": "Sample Text Data",
                "accountId": 8,
                "accountName": "Sample Text Data",
                "contactId": 14,
                "contactName": "Sample Text Data",
                "invoiceId": 5,
                "invoiceName": "Sample Text Data",
                "orderStatusTypeId": 8,
                "orderStatusTypeName": "Sample Text Data",
                "companyName": "Acme Co.",
                "externalIdentifier": "124567-23",
                "completed": "2021-04-26T15:25:27.587Z",
                "purchaseOrderNumber": "PO123454",
                "totalAmountEstimate": 456.67,
                "preAuthTransactionIdentifier": "236958",
                "created": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 23,
                "createdByUserName": "Sample Text Data",
                "statusUpdated": "2021-04-26T15:25:27.587Z",
                "priceBookId": 10,
                "priceBookName": "Sample Text Data",
                "accountContractId": 12,
                "accountContractName": "Sample Text Data"
            }
        ]
    }
}
POSTOrder/Process
Process an existing draft Order or re-process an existing failed Order. Optionally, the order can be billed immediately via billNow: true. Billing now is required if there are manual charges that need to be included, otherwise they are not billed.
Process an existing draft Order or re-process an existing failed Order.
POST Order/Process

{
    "identity": 1234,
    "billNow": true
}
View Sample Response
HTTP/1.1 200 OK
PUTOrder/{id}
Update an existing instance of the Order object.
Update an existing instance of the Order object.
PUT Order/{id}

{
    "identity": 1,
    "accountId": 17,
    "contactId": 3,
    "invoiceId": 21,
    "orderStatusTypeId": 25,
    "companyName": "Acme Co.",
    "externalIdentifier": "124567-23",
    "completed": "2021-04-26T15:25:27.587Z",
    "purchaseOrderNumber": "PO123454",
    "totalAmountEstimate": 456.67,
    "preAuthTransactionIdentifier": "236958",
    "createdByUserId": 27,
    "statusUpdated": "2021-04-26T15:25:27.587Z",
    "priceBookId": 19,
    "accountContractId": 16
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 21,
                "ownerName": "Sample Text Data",
                "accountId": 12,
                "accountName": "Sample Text Data",
                "contactId": 17,
                "contactName": "Sample Text Data",
                "invoiceId": 12,
                "invoiceName": "Sample Text Data",
                "orderStatusTypeId": 8,
                "orderStatusTypeName": "Sample Text Data",
                "companyName": "Acme Co.",
                "externalIdentifier": "124567-23",
                "completed": "2021-04-26T15:25:27.587Z",
                "purchaseOrderNumber": "PO123454",
                "totalAmountEstimate": 456.67,
                "preAuthTransactionIdentifier": "236958",
                "created": "2021-04-26T15:25:27.587Z",
                "createdByUserId": 2,
                "createdByUserName": "Sample Text Data",
                "statusUpdated": "2021-04-26T15:25:27.587Z",
                "priceBookId": 25,
                "priceBookName": "Sample Text Data",
                "accountContractId": 12,
                "accountContractName": "Sample Text Data"
            }
        ]
    }
}