TAG LINE
SMALL TITLE
id | "id": 16 Type: Number This is the unique numeric identifier for the InvoiceDelivery |
ownerId | "ownerId": 15 Type: Number Unique identifier for the associated Owner object. |
name | "name": "Hello World" Type: String |
templateId | "templateId": 19 Type: Number Unique identifier for the associated Template object. |
emailTemplateId | "emailTemplateId": 16 Type: Number Unique identifier for the associated EmailTemplate object. |
invoiceDeliveryTypeId | "invoiceDeliveryTypeId": 22 Type: Number Unique identifier for the associated InvoiceDeliveryType object. |
When updating an object you use the update request header with the list of properties to update. Then you need only supply the new values in the body of your request. Please note, this header can only be used with PUT or PATCH requests.
Field List:
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:
DataFlow PATCH objects:
DELETE | api/v2/Invoice/Delivery/{id:int} |
Delete an instance of the InvoiceDelivery object. |
GET | api/v2/Invoice/Delivery |
Retrieve all of the InvoiceDelivery objects. |
GET | api/v2/Invoice/Delivery/Paged |
Retreive all of the InvoiceDelivery objects in a paged fashion. |
GET | api/v2/Invoice/Delivery/Paged/Detail |
Retreive all of the InvoiceDelivery objects in a paged fashion with all object details. |
GET | api/v2/Invoice/Delivery/{id:int} |
Retrieve an instance of the InvoiceDelivery object by it's ID. | |
{id:int} | Unique identifier for the InvoiceDelivery object. |
GET | api/v2/Invoice/Delivery/{id:int}/Detail |
Retreive all of the Detail objects for the specified InvoiceDelivery. | |
{id:int} | Unique identifier for the InvoiceDelivery object. |
PATCH | api/v2/Invoice/Delivery/{id:int} |
Update the InvoiceDelivery object and optionally make changes to any child objects. |
POST | api/v2/Invoice/Delivery |
Create a new instance of the InvoiceDelivery object. |
PUT | api/v2/Invoice/Delivery/{id:int} |
Update an existing instance of the InvoiceDelivery object. |