All URIs are relative to https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0
Method | HTTP request | Description |
---|---|---|
delete_sales_invoice | DELETE /companies({company_id})/salesInvoices({salesInvoice_id}) | Deletes an object of type salesInvoice in Dynamics 365 Business Central |
get_sales_invoice | GET /companies({company_id})/salesInvoices({salesInvoice_id}) | Retrieve the properties and relationships of an object of type salesInvoice for Dynamics 365 Business Central. |
list_sales_invoices | GET /companies({company_id})/salesInvoices | Returns a list of salesInvoices |
patch_sales_invoice | PATCH /companies({company_id})/salesInvoices({salesInvoice_id}) | Updates an object of type salesInvoice in Dynamics 365 Business Central |
post_sales_invoice | POST /companies({company_id})/salesInvoices | Creates an object of type salesInvoice in Dynamics 365 Business Central |
delete_sales_invoice(company_id, sales_invoice_id)
Deletes an object of type salesInvoice in Dynamics 365 Business Central
- OAuth Authentication (oAuth):
import time
import pybusinesscentral
from pybusinesscentral.api import sales_invoice_api
from pprint import pprint
# Defining the host is optional and defaults to https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0
# See configuration.py for a list of all supported configuration parameters.
configuration = pybusinesscentral.Configuration(
host = "https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure OAuth2 access token for authorization: oAuth
configuration = pybusinesscentral.Configuration(
host = "https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0"
)
configuration.access_token = 'YOUR_ACCESS_TOKEN'
# Enter a context with an instance of the API client
with pybusinesscentral.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = sales_invoice_api.SalesInvoiceApi(api_client)
company_id = "company_id_example" # str | (v1.0) id for company
sales_invoice_id = "salesInvoice_id_example" # str | (v1.0) id for salesInvoice
# example passing only required values which don't have defaults set
try:
# Deletes an object of type salesInvoice in Dynamics 365 Business Central
api_instance.delete_sales_invoice(company_id, sales_invoice_id)
except pybusinesscentral.ApiException as e:
print("Exception when calling SalesInvoiceApi->delete_sales_invoice: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
company_id | str | (v1.0) id for company | |
sales_invoice_id | str | (v1.0) id for salesInvoice |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
Status code | Description | Response headers |
---|---|---|
204 | (v1.0) Succesfully deleted the specified salesInvoice | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SalesInvoice get_sales_invoice(company_id, sales_invoice_id)
Retrieve the properties and relationships of an object of type salesInvoice for Dynamics 365 Business Central.
- OAuth Authentication (oAuth):
import time
import pybusinesscentral
from pybusinesscentral.api import sales_invoice_api
from pybusinesscentral.model.sales_invoice import SalesInvoice
from pprint import pprint
# Defining the host is optional and defaults to https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0
# See configuration.py for a list of all supported configuration parameters.
configuration = pybusinesscentral.Configuration(
host = "https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure OAuth2 access token for authorization: oAuth
configuration = pybusinesscentral.Configuration(
host = "https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0"
)
configuration.access_token = 'YOUR_ACCESS_TOKEN'
# Enter a context with an instance of the API client
with pybusinesscentral.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = sales_invoice_api.SalesInvoiceApi(api_client)
company_id = "company_id_example" # str | (v1.0) id for company
sales_invoice_id = "salesInvoice_id_example" # str | (v1.0) id for salesInvoice
expand = [
"salesInvoiceLines",
] # [str] | (v1.0) Entities to expand (optional)
select = [
"id",
] # [str] | (v1.0) Selected properties to be retrieved (optional)
# example passing only required values which don't have defaults set
try:
# Retrieve the properties and relationships of an object of type salesInvoice for Dynamics 365 Business Central.
api_response = api_instance.get_sales_invoice(company_id, sales_invoice_id)
pprint(api_response)
except pybusinesscentral.ApiException as e:
print("Exception when calling SalesInvoiceApi->get_sales_invoice: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
# Retrieve the properties and relationships of an object of type salesInvoice for Dynamics 365 Business Central.
api_response = api_instance.get_sales_invoice(company_id, sales_invoice_id, expand=expand, select=select)
pprint(api_response)
except pybusinesscentral.ApiException as e:
print("Exception when calling SalesInvoiceApi->get_sales_invoice: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
company_id | str | (v1.0) id for company | |
sales_invoice_id | str | (v1.0) id for salesInvoice | |
expand | [str] | (v1.0) Entities to expand | [optional] |
select | [str] | (v1.0) Selected properties to be retrieved | [optional] |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | (v1.0) Succesfully returned the requested salesInvoice | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
InlineResponse2003 list_sales_invoices(company_id)
Returns a list of salesInvoices
- OAuth Authentication (oAuth):
import time
import pybusinesscentral
from pybusinesscentral.api import sales_invoice_api
from pybusinesscentral.model.inline_response2003 import InlineResponse2003
from pprint import pprint
# Defining the host is optional and defaults to https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0
# See configuration.py for a list of all supported configuration parameters.
configuration = pybusinesscentral.Configuration(
host = "https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure OAuth2 access token for authorization: oAuth
configuration = pybusinesscentral.Configuration(
host = "https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0"
)
configuration.access_token = 'YOUR_ACCESS_TOKEN'
# Enter a context with an instance of the API client
with pybusinesscentral.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = sales_invoice_api.SalesInvoiceApi(api_client)
company_id = "company_id_example" # str | (v1.0) id for company
top = 1 # int | (v1.0) Number of items to return from the top of the list (optional)
skip = 1 # int | (v1.0) Number of items to skip from the list (optional)
limit = 1 # int | (v1.0) Number of items to return from the list (optional)
filter = "$filter_example" # str | (v1.0) Filtering expression (optional)
expand = [
"salesInvoiceLines",
] # [str] | (v1.0) Entities to expand (optional)
select = [
"id",
] # [str] | (v1.0) Selected properties to be retrieved (optional)
# example passing only required values which don't have defaults set
try:
# Returns a list of salesInvoices
api_response = api_instance.list_sales_invoices(company_id)
pprint(api_response)
except pybusinesscentral.ApiException as e:
print("Exception when calling SalesInvoiceApi->list_sales_invoices: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
# Returns a list of salesInvoices
api_response = api_instance.list_sales_invoices(company_id, top=top, skip=skip, limit=limit, filter=filter, expand=expand, select=select)
pprint(api_response)
except pybusinesscentral.ApiException as e:
print("Exception when calling SalesInvoiceApi->list_sales_invoices: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
company_id | str | (v1.0) id for company | |
top | int | (v1.0) Number of items to return from the top of the list | [optional] |
skip | int | (v1.0) Number of items to skip from the list | [optional] |
limit | int | (v1.0) Number of items to return from the list | [optional] |
filter | str | (v1.0) Filtering expression | [optional] |
expand | [str] | (v1.0) Entities to expand | [optional] |
select | [str] | (v1.0) Selected properties to be retrieved | [optional] |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | (v1.0) Succesfully returned a list of salesInvoices | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SalesInvoice patch_sales_invoice(company_id, sales_invoice_id, content_type, if_match, unknown_base_type)
Updates an object of type salesInvoice in Dynamics 365 Business Central
- OAuth Authentication (oAuth):
import time
import pybusinesscentral
from pybusinesscentral.api import sales_invoice_api
from pybusinesscentral.model.unknownbasetype import UNKNOWNBASETYPE
from pybusinesscentral.model.sales_invoice import SalesInvoice
from pprint import pprint
# Defining the host is optional and defaults to https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0
# See configuration.py for a list of all supported configuration parameters.
configuration = pybusinesscentral.Configuration(
host = "https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure OAuth2 access token for authorization: oAuth
configuration = pybusinesscentral.Configuration(
host = "https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0"
)
configuration.access_token = 'YOUR_ACCESS_TOKEN'
# Enter a context with an instance of the API client
with pybusinesscentral.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = sales_invoice_api.SalesInvoiceApi(api_client)
company_id = "company_id_example" # str | (v1.0) id for company
sales_invoice_id = "salesInvoice_id_example" # str | (v1.0) id for salesInvoice
content_type = "Content-Type_example" # str | (v1.0) application/json
if_match = "If-Match_example" # str | (v1.0) Required. When this request header is included and the eTag provided does not match the current tag on the entity, this will not be updated.
unknown_base_type = None # UNKNOWN_BASE_TYPE |
# example passing only required values which don't have defaults set
try:
# Updates an object of type salesInvoice in Dynamics 365 Business Central
api_response = api_instance.patch_sales_invoice(company_id, sales_invoice_id, content_type, if_match, unknown_base_type)
pprint(api_response)
except pybusinesscentral.ApiException as e:
print("Exception when calling SalesInvoiceApi->patch_sales_invoice: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
company_id | str | (v1.0) id for company | |
sales_invoice_id | str | (v1.0) id for salesInvoice | |
content_type | str | (v1.0) application/json | |
if_match | str | (v1.0) Required. When this request header is included and the eTag provided does not match the current tag on the entity, this will not be updated. | |
unknown_base_type | UNKNOWN_BASE_TYPE |
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | (v1.0) Succesfully updated the specifiedsalesInvoice | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
SalesInvoice post_sales_invoice(company_id, content_type, unknown_base_type)
Creates an object of type salesInvoice in Dynamics 365 Business Central
- OAuth Authentication (oAuth):
import time
import pybusinesscentral
from pybusinesscentral.api import sales_invoice_api
from pybusinesscentral.model.unknownbasetype import UNKNOWNBASETYPE
from pybusinesscentral.model.sales_invoice import SalesInvoice
from pprint import pprint
# Defining the host is optional and defaults to https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0
# See configuration.py for a list of all supported configuration parameters.
configuration = pybusinesscentral.Configuration(
host = "https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure OAuth2 access token for authorization: oAuth
configuration = pybusinesscentral.Configuration(
host = "https://api.businesscentral.dynamics.com/v2.0/sandbox/api/v2.0"
)
configuration.access_token = 'YOUR_ACCESS_TOKEN'
# Enter a context with an instance of the API client
with pybusinesscentral.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = sales_invoice_api.SalesInvoiceApi(api_client)
company_id = "company_id_example" # str | (v1.0) id for company
content_type = "Content-Type_example" # str | (v1.0) application/json
unknown_base_type = None # UNKNOWN_BASE_TYPE |
expand = [
"salesInvoiceLines",
] # [str] | (v1.0) Entities to expand (optional)
# example passing only required values which don't have defaults set
try:
# Creates an object of type salesInvoice in Dynamics 365 Business Central
api_response = api_instance.post_sales_invoice(company_id, content_type, unknown_base_type)
pprint(api_response)
except pybusinesscentral.ApiException as e:
print("Exception when calling SalesInvoiceApi->post_sales_invoice: %s\n" % e)
# example passing only required values which don't have defaults set
# and optional values
try:
# Creates an object of type salesInvoice in Dynamics 365 Business Central
api_response = api_instance.post_sales_invoice(company_id, content_type, unknown_base_type, expand=expand)
pprint(api_response)
except pybusinesscentral.ApiException as e:
print("Exception when calling SalesInvoiceApi->post_sales_invoice: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
company_id | str | (v1.0) id for company | |
content_type | str | (v1.0) application/json | |
unknown_base_type | UNKNOWN_BASE_TYPE | ||
expand | [str] | (v1.0) Entities to expand | [optional] |
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
201 | (v1.0) A new salesInvoice has been succesfully created | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]