TAG LINE
TAG LINE
SMALL TITLE

Invoice / Delivery

(API Version v5)


This entity represents the configuration of Invoice delivery details (i.e. via email or offline), and associated templates to be used (i.e. invoice and email delivery templates).


What can you do with InvoiceDelivery?


Properties

Property Details
identity
READ-ONLY
"identity": 3
Type: Number
This is the unique numeric identifier for the InvoiceDelivery
ownerId
READ-ONLY
"ownerId": 25
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.
name
"name": "Hello World"
Type: String
The user defined name for the Delivery.
templateId
"templateId": 5
Type: Number
The invoice template to use with this delivery method.

Unique identifier for the associated Template object.
templateName
"templateName": "Sample Name"
Type: String
The name of the object associated with the templateId property.
emailTemplateId
"emailTemplateId": 16
Type: Number
The email template to use with this delivery method.

Unique identifier for the associated EmailTemplate object.
emailTemplateName
"emailTemplateName": "Sample Name"
Type: String
The name of the object associated with the emailTemplateId property.
invoiceDeliveryTypeId
"invoiceDeliveryTypeId": 3
Type: Number
Specifying if this is email delivery or offline.

Unique identifier for the associated InvoiceDeliveryType object.
invoiceDeliveryTypeName
"invoiceDeliveryTypeName": "Sample Name"
Type: String
The name of the object associated with the invoiceDeliveryTypeId 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 or nested within the envelope of a DataFlow. Below you will find the child objects that can be updated as part of PATCH operations for the InvoiceDelivery object.

Standard PATCH objects:

  • invoiceDeliveryReport - create, update, delete

DataFlow PATCH objects:

  • invoiceDelivery - create, update, delete
  • invoiceDeliveryReport - create, update, delete

End Points

DELETEInvoice/Delivery/{id}
Delete an instance of the InvoiceDelivery 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 InvoiceDelivery object.
Delete an instance of the InvoiceDelivery object.
DELETE Invoice/Delivery/{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": "invoiceDelivery"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETInvoice/Delivery/
Retrieve all of the InvoiceDelivery objects.
Retrieve all of the InvoiceDelivery objects.
GET Invoice/Delivery/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 15,
            "ownerName": "Sample Text Data",
            "name": "Sample Text Data",
            "templateId": 17,
            "templateName": "Sample Text Data",
            "emailTemplateId": 17,
            "emailTemplateName": "Sample Text Data",
            "invoiceDeliveryTypeId": 23,
            "invoiceDeliveryTypeName": "Sample Text Data"
        }
    ]
}
GETInvoice/Delivery/Paged
Retrieve all of the InvoiceDelivery 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 InvoiceDelivery objects in a paged fashion.
GET Invoice/Delivery/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": 8,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "templateId": 16,
                "templateName": "Sample Text Data",
                "emailTemplateId": 12,
                "emailTemplateName": "Sample Text Data",
                "invoiceDeliveryTypeId": 11,
                "invoiceDeliveryTypeName": "Sample Text Data"
            }
        ]
    }
}
GETInvoice/Delivery/Paged/Detail
Retrieve all of the InvoiceDelivery 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 InvoiceDelivery objects in a paged fashion with all object details.
GET Invoice/Delivery/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": 25,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "templateId": 26,
                "templateName": "Sample Text Data",
                "emailTemplateId": 20,
                "emailTemplateName": "Sample Text Data",
                "invoiceDeliveryTypeId": 18,
                "invoiceDeliveryTypeName": "Sample Text Data",
                "details": {
                    "sampleSingleObject": {
                        "identity": 2,
                        "property1": "Sample Text",
                        "property2": "2021-04-26T15:25:29.117Z",
                        "property3": 2
                    },
                    "sampleMultipleObjects": {
                        "totalCount": 1,
                        "items": [
                            {
                                "identity": 2,
                                "property1": "Sample Text",
                                "property2": "2021-04-26T15:25:29.117Z",
                                "property3": 2
                            }
                        ]
                    }
                }
            }
        ]
    }
}
GETInvoice/Delivery/{id}
Retrieve an instance of the InvoiceDelivery object by its ID.
{id}Unique identifier for the InvoiceDelivery object.
Retrieve an instance of the InvoiceDelivery object by its ID.
GET Invoice/Delivery/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 24,
        "ownerName": "Sample Text Data",
        "name": "Sample Text Data",
        "templateId": 10,
        "templateName": "Sample Text Data",
        "emailTemplateId": 21,
        "emailTemplateName": "Sample Text Data",
        "invoiceDeliveryTypeId": 1,
        "invoiceDeliveryTypeName": "Sample Text Data"
    }
}
GETInvoice/Delivery/{id}/Detail
Retrieve deep detail of the InvoiceDelivery 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 InvoiceDelivery object.
Retrieve deep detail of the InvoiceDelivery object by its ID.
GET Invoice/Delivery/{id}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 22,
        "ownerName": "Sample Text Data",
        "name": "Sample Text Data",
        "templateId": 15,
        "templateName": "Sample Text Data",
        "emailTemplateId": 10,
        "emailTemplateName": "Sample Text Data",
        "invoiceDeliveryTypeId": 6,
        "invoiceDeliveryTypeName": "Sample Text Data",
        "details": {
            "sampleSingleObject": {
                "identity": 2,
                "property1": "Sample Text",
                "property2": "2021-04-26T15:25:29.117Z",
                "property3": 2
            },
            "sampleMultipleObjects": {
                "totalCount": 1,
                "items": [
                    {
                        "identity": 2,
                        "property1": "Sample Text",
                        "property2": "2021-04-26T15:25:29.117Z",
                        "property3": 2
                    }
                ]
            }
        }
    }
}
PATCHInvoice/Delivery/{id}
Update or Add the InvoiceDelivery 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 InvoiceDelivery object.
Update or Add the InvoiceDelivery object and optionally make changes to any child objects.
PATCH Invoice/Delivery/{id}

{
    "details": {},
    "invoiceDeliverys": {
        "items": [
            {
                "patchType": "create",
                "patchClientId": 1,
                "name": "Sample Text Data",
                "templateId": 18,
                "emailTemplateId": 23,
                "invoiceDeliveryTypeId": 26
            }
        ]
    }
}
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": "invoiceDelivery",
                "instance": {
                    "identity": 1,
                    "ownerId": 16,
                    "ownerName": "Sample Text Data",
                    "name": "Sample Text Data",
                    "templateId": 9,
                    "templateName": "Sample Text Data",
                    "emailTemplateId": 3,
                    "emailTemplateName": "Sample Text Data",
                    "invoiceDeliveryTypeId": 15,
                    "invoiceDeliveryTypeName": "Sample Text Data"
                }
            }
        ]
    }
}
POSTInvoice/Delivery/
Create a new instance of the InvoiceDelivery object.
Create a new instance of the InvoiceDelivery object.
POST Invoice/Delivery/

{
    "name": "Sample Text Data",
    "templateId": 8,
    "emailTemplateId": 14,
    "invoiceDeliveryTypeId": 2
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 22,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "templateId": 0,
                "templateName": "Sample Text Data",
                "emailTemplateId": 4,
                "emailTemplateName": "Sample Text Data",
                "invoiceDeliveryTypeId": 20,
                "invoiceDeliveryTypeName": "Sample Text Data"
            }
        ]
    }
}
PUTInvoice/Delivery/{id}
Update an existing instance of the InvoiceDelivery object.
Update an existing instance of the InvoiceDelivery object.
PUT Invoice/Delivery/{id}

{
    "identity": 1,
    "name": "Sample Text Data",
    "templateId": 10,
    "emailTemplateId": 25,
    "invoiceDeliveryTypeId": 24
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 1,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "templateId": 3,
                "templateName": "Sample Text Data",
                "emailTemplateId": 0,
                "emailTemplateName": "Sample Text Data",
                "invoiceDeliveryTypeId": 20,
                "invoiceDeliveryTypeName": "Sample Text Data"
            }
        ]
    }
}