API documentation

Dynaccount's API uses the same endpoint as our web-application, therefore you have full access to all features and resources. The current API version is v7, and you can download a PHP library to handle the communication between your own application and Dynaccount.

If you have any questions, or we can be of any further assistance, please send us a mail.

Introduction


Keep-Alive connection

For best performance with the API (or any API in general), you must re-use the same TCP connection for all requests, so TLS handshake and DNS lookup are only performed once. TLS handshake and DNS lookup are expensive in terms of performance.

Encoding

All text strings you send via HTTP requests must be UTF-8 encoded.

HTTP methods

Dynaccount does not use the HTTP request methods to control how the inbound requests are processed.

For best performance you should use HTTP GET for requests without POST data and HTTP POST for requests with POST data. The API supports HTTP/2, but is backward compatible with previous versions.

Request (POST)

When you send HTTP POST the Content-Type must be application/x-www-form-urlencoded

Response

Content-Type is application/json

SQL clauses

Dynaccount's API has 3 reserved keywords select, order and limit which means you can fetch data via SQL alike clauses. The reserved keywords will never occur in a model, and they can be used separately or in conjunction with each other.

Select *

/v7/.../get/vatcode
Fetches all default columns in table vatcode.

Select

/v7/.../get/vatcode?select=id,name
Fetches the columns id and name in table vatcode.

Where

/v7/.../get/vatcode?name=K25
Fetches entries where name has the value K25 in table vatcode.

Order asc

/v7/.../get/vatcode?order=name
Order the fetched entries by name ascending in table vatcode.

Order desc

/v7/.../get/vatcode?order=name+desc
Order the fetched entries by name descending in table vatcode.

Limit

/v7/.../get/vatcode?limit=0,10
Fetches the first 10 entries in table vatcode.

Authentication (X-Hash header)


To access the API you can find your credentials under "Administration > Virksomheder" at https://secure.dynaccount.com

Credentials
API_ID Unique integer identification
API_KEY 40 digit SHA-1 string
API_SECRET 40 digit SHA-1 secret string

High security level

Dynaccount uses a simple and straight forward approach, when it comes to the authorization of the API calls.

The security level is higher than the common RESTful API, because it is built on the same principles as the RSA cryptosystem where you both have a private and public key. The private key is never transported over the network in the API call, but is only used to calculate a SHA-1 hash at each API call and the hash result is put in the X-Hash header.

HTTP GET

HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/vatcode HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

X-Hash header is a SHA-1 hash of URL and API_SECRET.

Generate X-Hash with PHP:
$url = 'api.dynaccount.com/v7/{API_ID}/{API_KEY}/get/vatcode';

//	X-Hash header: SHA-1 hash of URL and API_SECRET
$header_x_hash = sha1( $url . '{API_SECRET}' );

HTTP POST

HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/vatcode HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 105
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=K25&txt=K%C3%B8bsmoms&account_id_=14262&percent=25&deduction_percent=100&type=GROSS&accountoff_id_=

X-Hash header is a SHA-1 hash of URL, POST data and API_SECRET.

Generate X-Hash with PHP:
$url = 'api.dynaccount.com/v7/{API_ID}/{API_KEY}/put/vatcode';

//	POST variables must be UTF-8 and URL encoded
$post = 'name=' . urlencode( 'K25' )
	.'&txt=' . urlencode( 'Købsmoms' )
	.'&account_id_=' . urlencode( '14262' )
	.'&percent=' . urlencode( '25' )
	.'&deduction_percent=' . urlencode( '100' )
	.'&type=' . urlencode( 'GROSS' )
	.'&accountoff_id_=' . urlencode( '' );

//	X-Hash header: SHA-1 hash of URL, POST data and API_SECRET
$header_x_hash = sha1( $url . $post . '{API_SECRET}' );

HTTP POST (multipart/form-data)

HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/upload_voucher HTTP/2
Host: api.dynaccount.com
Content-Type: multipart/form-data; boundary=aLongUniqueRandomGeneratedTextString
Content-Length: 5225
Accept-encoding: gzip
X-Hash: 58ea269911777b0ac911a9e74f510018c7a37877

--aLongUniqueRandomGeneratedTextString
Content-Disposition: form-data; name="label"
Content-Length: 19

Voucher description
--aLongUniqueRandomGeneratedTextString
Content-Disposition: form-data; name="from_name"
Content-Length: 13

Name or email
--aLongUniqueRandomGeneratedTextString
Content-Disposition: form-data; name="files[]"; filename="file.pdf"
Content-Type: application/pdf
Content-Length: 4987

[content of file]
--aLongUniqueRandomGeneratedTextString--

On multipart/form-data (file upload) the concatenation of X-Hash is different.

Generate X-Hash with PHP:
$url = 'api.dynaccount.com/v7/{API_ID}/{API_KEY}/action/upload_voucher';

//	POST variables must be UTF-8 encoded
$label = 'Voucher description';
$from_name = 'Name or email';

$hash_base = $label . $from_name . file_get_contents( 'file.pdf' );

//	X-Hash header: SHA-1 hash of URL, POST data and API_SECRET
$header_x_hash = sha1( $url . $hash_base . '{API_SECRET}' );

HTTP codes


Code Message Description
200 OK The request was processed with success.
400 Bad request Unspecified error occurred.
401 Unauthorized The X-hash header has failed verification.
402 Payment required The subscription has expired.
403 Forbidden Your IP has been temporary blocked due to too many unauthorized requests.
404 Not found Resource not found.
405 Method not allowed Method not allowed.
415 Unsupported media type Unsupported file type uploaded.
422 Unprocessable entity Could not process the input data. Invalid fields, required fields are missing or invalid data.
503 Service unavailable Service is unavailable due to maintenance.

Methods


Get

Select *

SQL:
SELECT *
FROM vatcode
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/vatcode HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d

Select

SQL:
SELECT id, name
FROM vatcode
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/vatcode?select=id,name HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f10e2821bbbea527ea02200352313bc059445190

By id

SQL:
SELECT id, name
FROM vatcode
WHERE id=1994
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/vatcode/1994?select=id,name HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

Where

SQL:
SELECT id, name
FROM vatcode
WHERE name='K25'
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/vatcode?select=id,name&name=K25 HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: bb3e2e6e5ac10429dc5a97b36208b2d209d24307

Order

SQL:
SELECT id, name
FROM vatcode
ORDER name DESC
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/vatcode?select=id,name&order=name+DESC HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: 1456f817f32ff2f3cadd6540aaf38aefb794a732

Limit

SQL:
SELECT id, name
FROM vatcode
LIMIT 0,10
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/vatcode?select=id,name&limit=0,10 HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: b1605610df58ced6c94a1059b1b904eb0a80d4b1

Put

Insert

SQL:
INSERT vatcode
SET name='K25', txt='Købsmoms', account_id_=14262, percent=25, deduction_percent=100, type='GROSS', accountoff_id_=''
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/vatcode HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 105
Accept-encoding: gzip
X-Hash: 4f17f9ebf11c6597490a6f8e53cd9755eab8ea37

name=K25&txt=K%C3%B8bsmoms&account_id_=14262&percent=25&deduction_percent=100&type=GROSS&accountoff_id_=
Generate POST data with PHP:
$post = 'name=' . urlencode( 'K25' )
	.'&txt=' . urlencode( 'Købsmoms' )
	.'&account_id_=' . urlencode( '14262' )
	.'&percent=' . urlencode( '25' )
	.'&deduction_percent=' . urlencode( '100' )
	.'&type=' . urlencode( 'GROSS' )
	.'&accountoff_id_=' . urlencode( '' );

Update

SQL:
UPDATE vatcode
SET name='K25', txt='Købsmoms', account_id_=14262, percent=25, deduction_percent=100, type='GROSS', accountoff_id_=''
WHERE id=5788
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/vatcode/5788 HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 105
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

name=K25&txt=K%C3%B8bsmoms&account_id_=14262&percent=25&deduction_percent=100&type=GROSS&accountoff_id_=
Generate POST data with PHP:
$post = 'name=' . urlencode( 'K25' )
	.'&txt=' . urlencode( 'Købsmoms' )
	.'&account_id_=' . urlencode( '14262' )
	.'&percent=' . urlencode( '25' )
	.'&deduction_percent=' . urlencode( '100' )
	.'&type=' . urlencode( 'GROSS' )
	.'&accountoff_id_=' . urlencode( '' );

Insert_bulk

SQL:
INSERT INTO vatcode (name, txt, account_id_, percent, deduction_percent, type, accountoff_id_)
VALUES
	('K25', 'Købsmoms', 14262, 25, 100, 'GROSS', ''),
	('S25', 'Salgsmoms', 14261, 25, 100, 'GROSS', '')
HTTP request:
POST /v7/{API_ID}/{API_KEY}/insert_bulk/vatcode HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 248
Accept-encoding: gzip
X-Hash: 252cc1379586b3d4b65f412c66a275e359253385

name[0]=K25&txt[0]=K%C3%B8bsmoms&account_id_[0]=14262&percent[0]=25&deduction_percent[0]=100&type[0]=GROSS&accountoff_id_[0]=&name[1]=S25&txt[1]=Salgsmoms&account_id_[1]=14261&percent[1]=25&deduction_percent[1]=100&type[1]=GROSS&accountoff_id_[1]=
Generate POST data with PHP:
$entries = [[
	'name' => 'K25',
	'txt' => 'Købsmoms',
	'account_id_' => 14262,
	'percent' => 25,
	'deduction_percent' => 100,
	'type' => 'GROSS',
	'accountoff_id_' => ''
],[
	'name' => 'S25',
	'txt' => 'Salgsmoms',
	'account_id_' => 14261,
	'percent' => 25,
	'deduction_percent' => 100,
	'type' => 'GROSS',
	'accountoff_id_' => ''
]];

$post = [];
foreach($entries as $seq => $entry){
	foreach($entry as $key => $value){
		$post[] = $key . '[' . $seq . ']=' . urlencode( $value );
	}
}

$post = implode( '&', $post );

Delete

SQL:
DELETE FROM vatcode
WHERE id=2991
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/vatcode/2991 HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: e62d7f1eb43d87c202d2f164ba61297e71be80f4

Action

HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_debtor_invoice HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 80
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=177&is_attached=YES&email=alias%40domain.com&msg=Message+to+recipient
Generate POST data with PHP:
$post = 'invoice_id=' . urlencode( '177' )
	.'&is_attached=' . urlencode( 'YES' )
	.'&email=' . urlencode( 'alias@domain.com' )
	.'&msg=' . urlencode( 'Message to recipient' );

Upload_voucher

HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/upload_voucher HTTP/2
Host: api.dynaccount.com
Content-Type: multipart/form-data; boundary=aLongUniqueRandomGeneratedTextString
Content-Length: 5225
Accept-encoding: gzip
X-Hash: 58ea269911777b0ac911a9e74f510018c7a37877

--aLongUniqueRandomGeneratedTextString
Content-Disposition: form-data; name="label"
Content-Length: 19

Voucher description
--aLongUniqueRandomGeneratedTextString
Content-Disposition: form-data; name="from_name"
Content-Length: 13

Name or email
--aLongUniqueRandomGeneratedTextString
Content-Disposition: form-data; name="files[]"; filename="file.pdf"
Content-Type: application/pdf
Content-Length: 4987

[content of file]
--aLongUniqueRandomGeneratedTextString--

Document

Fetch PDF document (Quote/order/invoice).

On success HTTP response is application/pdf with the PDF stream.
On error HTTP response is application/json.

HTTP request:
GET /v7/{API_ID}/{API_KEY}/document/invoice/1033 HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: 2c6bb9a0b63d70bbf70d15135420317c1dfd2a73

Report

Fetch PDF report.

On success HTTP response is application/pdf with the PDF stream.
On error HTTP response is application/json.

HTTP request:
POST /v7/{API_ID}/{API_KEY}/report/ledger_cards/pdf?lang=da HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 143
Accept-encoding: gzip
X-Hash: 2c6bb9a0b63d70bbf70d15135420317c1dfd2a73

time_from=1451606400&time_to=1483142400&account_from=&account_to=&draft_entries=WITH&closing_balance=ALL&account_movements=ALL&dimension_name=

Fetch JSON report.

HTTP request:
POST /v7/{API_ID}/{API_KEY}/report/ledger_cards/json?lang=da HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 143
Accept-encoding: gzip
X-Hash: 2c6bb9a0b63d70bbf70d15135420317c1dfd2a73

time_from=1451606400&time_to=1483142400&account_from=&account_to=&draft_entries=WITH&closing_balance=ALL&account_movements=ALL&dimension_name=

Resources


Table (get/put/insert_bulk/delete)

account

GET
/v7/{API_ID}/{API_KEY}/get/account/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/account/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
account_id_ int
type enum PROFIT_LOSS
BALANCE
PRIVATE
HEADLINE
SUM
is_monitored enum NO
YES
vatcode_name string
name string
sum_account_id_ int
ref_currency_name string
is_dimension enum NO
YES
accountoff_id_ int
system int
system_account int
module int
stock int
is_bank int
accountoff_name string
PUT
/v7/{API_ID}/{API_KEY}/put/account/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/account/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 118 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

account_id_=&type=&is_monitored=&vatcode_name=&name=&sum_account_id_=&ref_currency_name=&is_dimension=&accountoff_id_=
Name Type Enum
account_id_ int
type enum PROFIT_LOSS
BALANCE
PRIVATE
HEADLINE
SUM
is_monitored enum NO
YES
vatcode_name string
name string
sum_account_id_ int
ref_currency_name string
is_dimension enum NO
YES
accountoff_id_ int
DELETE
/v7/{API_ID}/{API_KEY}/delete/account/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/account/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

accounting

GET
/v7/{API_ID}/{API_KEY}/get/accounting/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/accounting/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
enclosure_id int
type enum LEDGER
DEBTOR_LEDGER
CREDITOR_LEDGER
DEBTOR_INVOICE
CREDITOR_INVOICE
account_id_ int
accountoff_id_ int
vatcode_name string
dimension_name string
dimensionoff_name string
invoice_id_ int
invoice_time_due int
fi_payment_id_ decimal
currency_name string
amount decimal
currency_rate decimal
time int
account_name string
accountoff_name string
subaccountoff_id_ int
subaccountoff_type int
subaccountoff_name string
payment_method int
bank_recon_id int
currency_amount decimal
readonly int
PUT
/v7/{API_ID}/{API_KEY}/put/accounting/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/accounting/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 182 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

enclosure_id=&type=&account_id_=&accountoff_id_=&vatcode_name=&dimension_name=&dimensionoff_name=&invoice_id_=&invoice_time_due=&fi_payment_id_=&currency_name=&amount=&currency_rate=
Name Type Enum
enclosure_id int
type enum LEDGER
DEBTOR_LEDGER
CREDITOR_LEDGER
DEBTOR_INVOICE
CREDITOR_INVOICE
account_id_ int
accountoff_id_ int
vatcode_name string
dimension_name string
dimensionoff_name string
invoice_id_ int
invoice_time_due int
fi_payment_id_ decimal
currency_name string
amount decimal
currency_rate decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/accounting/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/accounting/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

accounting_bank

GET
/v7/{API_ID}/{API_KEY}/get/accounting_bank/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/accounting_bank/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
is_recon int
account_id int
accounting_id int
time int
is_booked int
recon_id int
enc_id_ int
enc_txt string
currency_name string
amount decimal
currency_amount decimal

bank

GET
/v7/{API_ID}/{API_KEY}/get/bank/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/bank/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
account_id_ int
name string
bank string
code string
account string
swift string
iban string
txt string
account_id int
account_name string
PUT
/v7/{API_ID}/{API_KEY}/put/bank/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/bank/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 57 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

account_id_=&name=&bank=&code=&account=&swift=&iban=&txt=
Name Type Enum
account_id_ int
name string
bank string
code string
account string
swift string
iban string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/bank/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/bank/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

bank_recon

GET
/v7/{API_ID}/{API_KEY}/get/bank_recon/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/bank_recon/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
is_recon int
account_id int
account_id_ int
account_name string
currency_name string
time int
recon_id int
accounting_id int
is_fi_payment int
seq int
amount decimal
accum_amount decimal
txt string
data_voucher_id int

bom

GET
/v7/{API_ID}/{API_KEY}/get/bom/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/bom/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
bom_group_name string
bom_id_ string
name string
status enum DEVELOPMENT
RELEASED
CLOSED
product_id_ string
txt string
bom_version_id int
current_bom_version_id int
version int
version_time int
time int
base_bom_id_ string
PUT
/v7/{API_ID}/{API_KEY}/put/bom/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/bom/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 56 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

bom_group_name=&bom_id_=&name=&status=&product_id_=&txt=
Name Type Enum
bom_group_name string
bom_id_ string
name string
status enum DEVELOPMENT
RELEASED
CLOSED
product_id_ string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/bom/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/bom/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

bom_entry

GET
/v7/{API_ID}/{API_KEY}/get/bom_entry/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/bom_entry/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
bom_id int
type enum ITEM
PART
material_id_ string
qty decimal
bom_version_id int
item_id_ string
item_version int
item_time int
item_name string
child_part_id int
child_part_version_id int
part_id_ string
part_version int
part_time int
part_name string
PUT
/v7/{API_ID}/{API_KEY}/put/bom_entry/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/bom_entry/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 32 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

bom_id=&type=&material_id_=&qty=
Name Type Enum
bom_id int
type enum ITEM
PART
material_id_ string
qty decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/bom_entry/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/bom_entry/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

bom_group

GET
/v7/{API_ID}/{API_KEY}/get/bom_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/bom_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
name string
prefix string
is_consecutive enum NO
YES
PUT
/v7/{API_ID}/{API_KEY}/put/bom_group/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/bom_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 29 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=&prefix=&is_consecutive=
Name Type Enum
name string
prefix string
is_consecutive enum NO
YES
DELETE
/v7/{API_ID}/{API_KEY}/delete/bom_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/bom_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

bom_version

GET
/v7/{API_ID}/{API_KEY}/get/bom_version/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/bom_version/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
PUT
/v7/{API_ID}/{API_KEY}/put/bom_version/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/bom_version/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 0 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

Name Type Enum
DELETE
/v7/{API_ID}/{API_KEY}/delete/bom_version/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/bom_version/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

contact

GET
/v7/{API_ID}/{API_KEY}/get/contact/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/contact/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
name string
contact_group_name string
attention_name string
attention_position string
attention_phone string
attention_email string
address string
zip string
city string
ref_country_name string
phone string
email string
vatno string
lang string
ref_currency_name string
note string
module_id int
time_last_followup int
time_next_followup int
time_created int
PUT
/v7/{API_ID}/{API_KEY}/put/contact/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/contact/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 185 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=&contact_group_name=&attention_name=&attention_position=&attention_phone=&attention_email=&address=&zip=&city=&ref_country_name=&phone=&email=&vatno=&lang=&ref_currency_name=&note=
Name Type Enum
name string
contact_group_name string
attention_name string
attention_position string
attention_phone string
attention_email string
address string
zip string
city string
ref_country_name string
phone string
email string
vatno string
lang string
ref_currency_name string
note string
DELETE
/v7/{API_ID}/{API_KEY}/delete/contact/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/contact/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

contact_user

GET
/v7/{API_ID}/{API_KEY}/get/contact_user/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/contact_user/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
contact_id int
user_id int
user_name string
contact_user_group_id int

creditor

GET
/v7/{API_ID}/{API_KEY}/get/creditor/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/creditor/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_id_ int
module_group_name string
vatcode_name string
payment_name string
name string
attention_name string
attention_position string
attention_phone string
attention_email string
address string
zip string
city string
ref_country_name string
phone string
email string
email_order string
vatno string
ean decimal
lang string
ref_currency_name string
creditor_bank_code string
creditor_bank_account string
creditor_swift string
creditor_iban string
creditor_fi decimal
payment_method enum BANK_ACCOUNT
FI71
note string
balance decimal
vatno_time_verified int
PUT
/v7/{API_ID}/{API_KEY}/put/creditor/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/creditor/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 345 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_id_=&module_group_name=&vatcode_name=&payment_name=&name=&attention_name=&attention_position=&attention_phone=&attention_email=&address=&zip=&city=&ref_country_name=&phone=&email=&email_order=&vatno=&ean=&lang=&ref_currency_name=&creditor_bank_code=&creditor_bank_account=&creditor_swift=&creditor_iban=&creditor_fi=&payment_method=&note=
Name Type Enum
module_id_ int
module_group_name string
vatcode_name string
payment_name string
name string
attention_name string
attention_position string
attention_phone string
attention_email string
address string
zip string
city string
ref_country_name string
phone string
email string
email_order string
vatno string
ean decimal
lang string
ref_currency_name string
creditor_bank_code string
creditor_bank_account string
creditor_swift string
creditor_iban string
creditor_fi decimal
payment_method enum BANK_ACCOUNT
FI71
note string
DELETE
/v7/{API_ID}/{API_KEY}/delete/creditor/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/creditor/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

creditor_accounting_module

GET
/v7/{API_ID}/{API_KEY}/get/creditor_accounting_module/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/creditor_accounting_module/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
is_matched int
module_id int
module_id_ int
module_name string
time int
is_booked int
enc_id_ int
enc_txt string
currency_name string
currency_rate decimal
amount decimal
currency_amount decimal
balance_currency_amount decimal

creditor_group

GET
/v7/{API_ID}/{API_KEY}/get/creditor_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/creditor_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
vatcode_name string
payment_name string
name string
ref_currency_name string
lang string
payment_method enum BANK_ACCOUNT
FI71
PUT
/v7/{API_ID}/{API_KEY}/put/creditor_group/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/creditor_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 74 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

vatcode_name=&payment_name=&name=&ref_currency_name=&lang=&payment_method=
Name Type Enum
vatcode_name string
payment_name string
name string
ref_currency_name string
lang string
payment_method enum BANK_ACCOUNT
FI71
DELETE
/v7/{API_ID}/{API_KEY}/delete/creditor_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/creditor_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

creditor_invoice

GET
/v7/{API_ID}/{API_KEY}/get/creditor_invoice/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/creditor_invoice/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_id_ int
dimension_name string
requisition string
time int
time_received int
invoice_id_ int
currency_name string
payment_name string
lang string
attention string
address string
zip string
city string
ref_country_name string
fi_payment_id_ decimal
txt string
is_booked int
is_system int
is_matched int
module_id int
module_name string
module_vatno string
time_due int
days_delivery int
enc_id_ int
currency_rate decimal
parent_order_id_ int
accountoff_id int
accountoff_id_ int
accountoff_name string
amount decimal
balance_currency_amount decimal
vat_amount decimal
vat_exempt_amount decimal
total_amount decimal
product_serial string
product_batch string
product_name string
product_txt string
product_product_id_ string
PUT
/v7/{API_ID}/{API_KEY}/put/creditor_invoice/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/creditor_invoice/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 179 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_id_=&dimension_name=&requisition=&time=&time_received=&invoice_id_=&currency_name=&payment_name=&lang=&attention=&address=&zip=&city=&ref_country_name=&fi_payment_id_=&txt=
Name Type Enum
module_id_ int
dimension_name string
requisition string
time int
time_received int
invoice_id_ int
currency_name string
payment_name string
lang string
attention string
address string
zip string
city string
ref_country_name string
fi_payment_id_ decimal
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/creditor_invoice/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/creditor_invoice/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

creditor_invoice_match

GET
/v7/{API_ID}/{API_KEY}/get/creditor_invoice_match/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/creditor_invoice_match/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
is_booked int
is_matched int
module_id int
module_id_ int
module_name string
time int
invoice_id_ int
currency_name string
currency_rate decimal
amount decimal
currency_amount decimal
balance_currency_amount decimal
accounting_module_id_ int

creditor_invoice_product

GET
/v7/{API_ID}/{API_KEY}/get/creditor_invoice_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/creditor_invoice_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
invoice_id int
product_id_ string
vatcode_name string
supplier_product_type enum INTERNAL
SUPPLIER
serial string
batch string
time_expire int
qty decimal
price decimal
name string
txt string
product_group_id int
product_id int
barcode_ean13 decimal
is_stocked int
vatcode_type int
vatcode_percent decimal
supplier_product_id_ string
unit string
vat_amount decimal
total_amount decimal
total_weight decimal
PUT
/v7/{API_ID}/{API_KEY}/put/creditor_invoice_product/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/creditor_invoice_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 112 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

invoice_id=&product_id_=&vatcode_name=&supplier_product_type=&serial=&batch=&time_expire=&qty=&price=&name=&txt=
Name Type Enum
invoice_id int
product_id_ string
vatcode_name string
supplier_product_type enum INTERNAL
SUPPLIER
serial string
batch string
time_expire int
qty decimal
price decimal
name string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/creditor_invoice_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/creditor_invoice_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

creditor_order

GET
/v7/{API_ID}/{API_KEY}/get/creditor_order/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/creditor_order/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_id_ int
dimension_name string
time int
currency_name string
time_delivery int
requisition string
lang string
attention string
address string
zip string
city string
ref_country_name string
txt string
is_approved int
is_invoiced int
is_invoicing_complete int
module_id int
module_name string
module_vatno string
time_approved int
days_order int
order_id_ int
sha1_ref string
is_seen_time int
vat_amount decimal
vat_exempt_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
product_name string
product_txt string
product_product_id_ string
PUT
/v7/{API_ID}/{API_KEY}/put/creditor_order/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/creditor_order/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 136 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_id_=&dimension_name=&time=&currency_name=&time_delivery=&requisition=&lang=&attention=&address=&zip=&city=&ref_country_name=&txt=
Name Type Enum
module_id_ int
dimension_name string
time int
currency_name string
time_delivery int
requisition string
lang string
attention string
address string
zip string
city string
ref_country_name string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/creditor_order/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/creditor_order/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

creditor_order_product

GET
/v7/{API_ID}/{API_KEY}/get/creditor_order_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/creditor_order_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
order_id int
product_id_ string
vatcode_name string
supplier_product_type enum INTERNAL
SUPPLIER
qty decimal
price decimal
name string
txt string
product_group_id int
product_id int
barcode_ean13 decimal
is_stocked int
is_stocked_serial int
is_stocked_batch int
vatcode_type int
is_invoicing_complete int
supplier_product_id_ string
qty_invoiced decimal
unit string
vat_amount decimal
total_amount decimal
total_weight decimal
PUT
/v7/{API_ID}/{API_KEY}/put/creditor_order_product/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/creditor_order_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 82 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

order_id=&product_id_=&vatcode_name=&supplier_product_type=&qty=&price=&name=&txt=
Name Type Enum
order_id int
product_id_ string
vatcode_name string
supplier_product_type enum INTERNAL
SUPPLIER
qty decimal
price decimal
name string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/creditor_order_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/creditor_order_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

creditor_order_product_serial

GET
/v7/{API_ID}/{API_KEY}/get/creditor_order_product_serial/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/creditor_order_product_serial/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
serial string
is_booked int
order_id int
order_product_id int
seq int
PUT
/v7/{API_ID}/{API_KEY}/put/creditor_order_product_serial/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/creditor_order_product_serial/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 7 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

serial=
Name Type Enum
serial string

currency

GET
/v7/{API_ID}/{API_KEY}/get/currency/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/currency/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
name string
time int
txt string
rate decimal
PUT
/v7/{API_ID}/{API_KEY}/put/currency/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/currency/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 22 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=&time=&txt=&rate=
Name Type Enum
name string
time int
txt string
rate decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/currency/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/currency/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

data_voucher

GET
/v7/{API_ID}/{API_KEY}/get/data_voucher/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/data_voucher/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
label string
client_id int
block_name string
is_ocr_pending int
is_ocr_verified int
is_attached int
num_ocr_results int
enclosure_id int
time int
user_id int
is_pdf_broken int
is_pdf_scan int
is_pic int
file_sha1 string
file_ext string
file_ext_thumb string
file_size decimal
file_size_original decimal
from_name string
from_email string
num_pages int
dpi int
ocr_confidence int
width decimal
height decimal
ocr_recall_id int
ocr_vatno int
ocr_vatno_name string
ocr_vatno_country string
ocr_is_vatno_verified int
ocr_invoice_id_ int
ocr_invoice_time int
ocr_invoice_time_due int
ocr_fi_type int
ocr_fi_payment_id_ decimal
ocr_is_fi_payment_verified int
ocr_fi_creditorno decimal
ocr_bank_code decimal
ocr_bank_code_id int
ocr_is_bank_code_verified int
ocr_bank_account decimal
ocr_is_bank_account_verified int
ocr_bank_iban string
ocr_is_bank_iban_verified int
ocr_bank_swift string
ocr_bank_swift_name string
ocr_is_bank_swift_verified int
ocr_products_pattern string
ocr_total decimal
ocr_is_total_verified int
ocr_vat decimal
ocr_currency string
coordinates string
PUT
/v7/{API_ID}/{API_KEY}/put/data_voucher/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/data_voucher/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 6 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

label=
Name Type Enum
label string
DELETE
/v7/{API_ID}/{API_KEY}/delete/data_voucher/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/data_voucher/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor

GET
/v7/{API_ID}/{API_KEY}/get/debtor/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_id_ int
module_group_name string
vatcode_name string
payment_name string
bank_name string
name string
attention_name string
attention_position string
attention_phone string
attention_email string
address string
zip string
city string
ref_country_name string
phone string
email string
email_invoice string
email_statement string
vatno string
ean decimal
ean_contact string
lang string
ref_currency_name string
dlv_attention string
dlv_name string
dlv_address string
dlv_zip string
dlv_city string
dlv_ref_country_name string
dlv_phone string
dlv_email string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
discount_percent decimal
note string
credit_max decimal
invoicing_module_id_ int
invoicing_module_attention string
bs_mandate int
contact_id int
balance decimal
vatno_time_verified int
is_blocked int
invoicing_module_name string
PUT
/v7/{API_ID}/{API_KEY}/put/debtor/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 482 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_id_=&module_group_name=&vatcode_name=&payment_name=&bank_name=&name=&attention_name=&attention_position=&attention_phone=&attention_email=&address=&zip=&city=&ref_country_name=&phone=&email=&email_invoice=&email_statement=&vatno=&ean=&ean_contact=&lang=&ref_currency_name=&dlv_attention=&dlv_name=&dlv_address=&dlv_zip=&dlv_city=&dlv_ref_country_name=&dlv_phone=&dlv_email=&payment_method=&discount_percent=&note=&credit_max=&invoicing_module_id_=&invoicing_module_attention=
Name Type Enum
module_id_ int
module_group_name string
vatcode_name string
payment_name string
bank_name string
name string
attention_name string
attention_position string
attention_phone string
attention_email string
address string
zip string
city string
ref_country_name string
phone string
email string
email_invoice string
email_statement string
vatno string
ean decimal
ean_contact string
lang string
ref_currency_name string
dlv_attention string
dlv_name string
dlv_address string
dlv_zip string
dlv_city string
dlv_ref_country_name string
dlv_phone string
dlv_email string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
discount_percent decimal
note string
credit_max decimal
invoicing_module_id_ int
invoicing_module_attention string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_accounting_module

GET
/v7/{API_ID}/{API_KEY}/get/debtor_accounting_module/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_accounting_module/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
is_matched int
module_id int
module_id_ int
module_name string
time int
is_booked int
enc_id_ int
enc_txt string
currency_name string
currency_rate decimal
amount decimal
currency_amount decimal
balance_currency_amount decimal

debtor_creditnote

GET
/v7/{API_ID}/{API_KEY}/get/debtor_creditnote/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_creditnote/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
credit_invoice_id int
time int
is_booked int
is_system int
is_matched int
module_id int
module_id_ int
module_name string
module_ean decimal
module_ean_contact string
module_vatno string
invoicing_module_id_ int
invoicing_module_name string
invoicing_module_vatno string
invoicing_module_ean decimal
invoicing_module_ean_contact string
invoicing_module_address string
invoicing_module_zip string
invoicing_module_city string
invoicing_module_country_name string
dimension_name string
invoice_id_ int
credit_invoice_id_ int
currency_name string
requisition string
sha1_ref string
lang string
amount decimal
balance_currency_amount decimal
vat_amount decimal
vat_exempt_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
attention string
address string
zip string
city string
ref_country_name string
txt string
product_serial string
product_batch string
product_name string
product_txt string
product_product_id_ string
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_creditnote/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_creditnote/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 24 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

credit_invoice_id=&time=
Name Type Enum
credit_invoice_id int
time int
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_creditnote/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_creditnote/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_creditnote_product

GET
/v7/{API_ID}/{API_KEY}/get/debtor_creditnote_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_creditnote_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
invoice_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
serial string
batch string
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
product_group_id int
product_id int
barcode_ean13 decimal
is_stocked int
vatcode_type int
vatcode_percent decimal
time_expire int
qty_credited decimal
is_price_cost decimal
unit_name string
is_list_listing int
is_list_pricing int
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_creditnote_product/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_creditnote_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 139 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

invoice_id=&product_id_=&vatcode_name=&product_type=&serial=&batch=&qty=&discount_type=&discount_value=&price=&price_cost=&name=&unit=&txt=
Name Type Enum
invoice_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
serial string
batch string
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_creditnote_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_creditnote_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_creditnote_product_list

GET
/v7/{API_ID}/{API_KEY}/get/debtor_creditnote_product_list/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_creditnote_product_list/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
invoice_product_id int
product_id int
product_id_ string
product_group_id int
is_stocked int
vatcode_name string
vatcode_type int
vatcode_percent decimal
qty decimal
price decimal
discount_percent decimal
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
name string
unit string
list_qty decimal

debtor_group

GET
/v7/{API_ID}/{API_KEY}/get/debtor_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
vatcode_name string
payment_name string
name string
ref_currency_name string
bank_name string
lang string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
discount_percent decimal
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_group/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 103 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

vatcode_name=&payment_name=&name=&ref_currency_name=&bank_name=&lang=&payment_method=&discount_percent=
Name Type Enum
vatcode_name string
payment_name string
name string
ref_currency_name string
bank_name string
lang string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
discount_percent decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_group_product_discount

GET
/v7/{API_ID}/{API_KEY}/get/debtor_group_product_discount/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_group_product_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_group_id int
product_id_ string
product_type enum PRODUCT
LISTING
discount_type enum PERCENT
DISCOUNT
PRICE
discount_value decimal
qty_discount_1 decimal
qty_discount_type_1 enum PERCENT
DISCOUNT
PRICE
qty_discount_value_1 decimal
qty_discount_2 decimal
qty_discount_type_2 enum PERCENT
DISCOUNT
PRICE
qty_discount_value_2 decimal
module_group_name string
module_group_currency_name string
product_id int
product_name string
price_sale decimal
price_sale_currency_1 decimal
price_sale_currency_2 decimal
price_sale_currency_3 decimal
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_group_product_discount/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_group_product_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 192 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_group_id=&product_id_=&product_type=&discount_type=&discount_value=&qty_discount_1=&qty_discount_type_1=&qty_discount_value_1=&qty_discount_2=&qty_discount_type_2=&qty_discount_value_2=
Name Type Enum
module_group_id int
product_id_ string
product_type enum PRODUCT
LISTING
discount_type enum PERCENT
DISCOUNT
PRICE
discount_value decimal
qty_discount_1 decimal
qty_discount_type_1 enum PERCENT
DISCOUNT
PRICE
qty_discount_value_1 decimal
qty_discount_2 decimal
qty_discount_type_2 enum PERCENT
DISCOUNT
PRICE
qty_discount_value_2 decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_group_product_discount/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_group_product_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_group_product_group_discount

GET
/v7/{API_ID}/{API_KEY}/get/debtor_group_product_group_discount/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_group_product_group_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_group_id int
product_group_name string
discount_percent decimal
qty_discount_1 decimal
qty_discount_value_1 decimal
qty_discount_2 decimal
qty_discount_value_2 decimal
module_group_name string
module_group_currency_name string
product_group_id int
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_group_product_group_discount/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_group_product_group_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 130 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_group_id=&product_group_name=&discount_percent=&qty_discount_1=&qty_discount_value_1=&qty_discount_2=&qty_discount_value_2=
Name Type Enum
module_group_id int
product_group_name string
discount_percent decimal
qty_discount_1 decimal
qty_discount_value_1 decimal
qty_discount_2 decimal
qty_discount_value_2 decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_group_product_group_discount/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_group_product_group_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_invoice

GET
/v7/{API_ID}/{API_KEY}/get/debtor_invoice/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_invoice/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_id_ int
dimension_name string
time int
currency_name string
discount_percent decimal
requisition string
is_paid enum NO
YES
payment_name string
bank_name string
lang string
attention string
address string
zip string
city string
ref_country_name string
dlv_attention string
dlv_name string
dlv_address string
dlv_zip string
dlv_city string
dlv_ref_country_name string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
txt string
is_booked int
is_system int
bs_status int
bs_mandate int
pbsno int
is_matched int
is_reminder int
is_credited int
is_credited_complete int
is_subscription int
module_id int
module_group_id int
module_name string
module_vatno string
module_ean decimal
module_ean_contact string
is_blocked int
invoicing_module_id int
invoicing_module_id_ int
invoicing_module_name string
invoicing_module_vatno string
invoicing_module_ean decimal
invoicing_module_ean_contact string
invoicing_module_address string
invoicing_module_zip string
invoicing_module_city string
invoicing_module_country_name string
invoicing_module_attention string
time_due int
time_bs_deadline int
invoice_id_ int
creditnote_id_ int
currency_rate decimal
sha1_ref string
is_seen_time int
payment_rate decimal
fi_payment_id_ decimal
parent_order_id_ int
parent_quote_id_ int
parent_subscription_group_id int
parent_subscription_group_name string
parent_subscription_id int
subscription_time_start int
subscription_time_end int
accountoff_id int
accountoff_id_ int
accountoff_name string
amount decimal
balance_currency_amount decimal
vat_amount decimal
vat_exempt_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
product_serial string
product_batch string
product_name string
product_txt string
product_product_id_ string
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_invoice/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_invoice/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 268 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_id_=&dimension_name=&time=&currency_name=&discount_percent=&requisition=&is_paid=&payment_name=&bank_name=&lang=&attention=&address=&zip=&city=&ref_country_name=&dlv_attention=&dlv_name=&dlv_address=&dlv_zip=&dlv_city=&dlv_ref_country_name=&payment_method=&txt=
Name Type Enum
module_id_ int
dimension_name string
time int
currency_name string
discount_percent decimal
requisition string
is_paid enum NO
YES
payment_name string
bank_name string
lang string
attention string
address string
zip string
city string
ref_country_name string
dlv_attention string
dlv_name string
dlv_address string
dlv_zip string
dlv_city string
dlv_ref_country_name string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_invoice/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_invoice/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_invoice_match

GET
/v7/{API_ID}/{API_KEY}/get/debtor_invoice_match/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_invoice_match/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
is_booked int
is_matched int
is_creditnote int
module_id int
module_id_ int
module_name string
time int
invoice_id_ int
parent_order_id_ int
currency_name string
currency_rate decimal
amount decimal
currency_amount decimal
balance_currency_amount decimal
invoicing_module_id_ int
invoicing_module_name string
accounting_module_id_ int

debtor_invoice_product

GET
/v7/{API_ID}/{API_KEY}/get/debtor_invoice_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_invoice_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
invoice_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
serial string
batch string
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
product_group_id int
product_id int
barcode_ean13 decimal
is_stocked int
vatcode_type int
vatcode_percent decimal
time_expire int
qty_credited decimal
is_price_cost decimal
unit_name string
is_list_listing int
is_list_pricing int
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_invoice_product/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_invoice_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 139 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

invoice_id=&product_id_=&vatcode_name=&product_type=&serial=&batch=&qty=&discount_type=&discount_value=&price=&price_cost=&name=&unit=&txt=
Name Type Enum
invoice_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
serial string
batch string
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_invoice_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_invoice_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_invoice_product_list

GET
/v7/{API_ID}/{API_KEY}/get/debtor_invoice_product_list/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_invoice_product_list/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
invoice_product_id int
product_id int
product_id_ string
product_group_id int
is_stocked int
vatcode_name string
vatcode_type int
vatcode_percent decimal
qty decimal
price decimal
discount_percent decimal
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
name string
unit string
list_qty decimal

debtor_order

GET
/v7/{API_ID}/{API_KEY}/get/debtor_order/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_order/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_id_ int
dimension_name string
time int
currency_name string
time_delivery int
discount_percent decimal
requisition string
lang string
attention string
address string
zip string
city string
ref_country_name string
dlv_attention string
dlv_name string
dlv_address string
dlv_zip string
dlv_city string
dlv_ref_country_name string
txt string
is_approved int
is_invoiced int
is_invoicing_complete int
module_id int
module_group_id int
module_name string
module_vatno string
module_ean decimal
module_ean_contact string
is_blocked int
invoicing_module_id_ int
invoicing_module_name string
invoicing_module_vatno string
invoicing_module_ean decimal
invoicing_module_ean_contact string
invoicing_module_address string
invoicing_module_zip string
invoicing_module_city string
invoicing_module_country_name string
invoicing_module_attention string
order_id_ int
sha1_ref string
is_seen_time int
parent_quote_id_ int
vat_amount decimal
vat_exempt_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
product_name string
product_txt string
product_product_id_ string
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_order/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_order/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 233 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_id_=&dimension_name=&time=&currency_name=&time_delivery=&discount_percent=&requisition=&lang=&attention=&address=&zip=&city=&ref_country_name=&dlv_attention=&dlv_name=&dlv_address=&dlv_zip=&dlv_city=&dlv_ref_country_name=&txt=
Name Type Enum
module_id_ int
dimension_name string
time int
currency_name string
time_delivery int
discount_percent decimal
requisition string
lang string
attention string
address string
zip string
city string
ref_country_name string
dlv_attention string
dlv_name string
dlv_address string
dlv_zip string
dlv_city string
dlv_ref_country_name string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_order/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_order/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_order_product

GET
/v7/{API_ID}/{API_KEY}/get/debtor_order_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_order_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
order_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
product_group_id int
product_id int
barcode_ean13 decimal
is_stocked int
is_stocked_serial int
is_stocked_batch int
vatcode_type int
is_invoicing_complete int
qty_invoiced decimal
is_price_cost decimal
unit_name string
is_list_listing int
is_list_pricing int
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_order_product/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_order_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 122 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

order_id=&product_id_=&vatcode_name=&product_type=&qty=&discount_type=&discount_value=&price=&price_cost=&name=&unit=&txt=
Name Type Enum
order_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_order_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_order_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_order_product_list

GET
/v7/{API_ID}/{API_KEY}/get/debtor_order_product_list/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_order_product_list/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
order_product_id int
product_id int
product_id_ string
product_group_id int
is_stocked int
vatcode_name string
vatcode_type int
qty decimal
price decimal
discount_percent decimal
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
name string
unit string
list_qty decimal

debtor_order_product_serial

GET
/v7/{API_ID}/{API_KEY}/get/debtor_order_product_serial/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_order_product_serial/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
serial string
is_booked int
order_id int
order_product_id int
seq int
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_order_product_serial/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_order_product_serial/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 7 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

serial=
Name Type Enum
serial string

debtor_product_discount

GET
/v7/{API_ID}/{API_KEY}/get/debtor_product_discount/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_product_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_id int
product_id_ string
product_type enum PRODUCT
LISTING
discount_type enum PERCENT
DISCOUNT
PRICE
discount_value decimal
qty_discount_1 decimal
qty_discount_type_1 enum PERCENT
DISCOUNT
PRICE
qty_discount_value_1 decimal
qty_discount_2 decimal
qty_discount_type_2 enum PERCENT
DISCOUNT
PRICE
qty_discount_value_2 decimal
module_id_ int
module_currency_name string
product_id int
product_name string
price_sale decimal
price_sale_currency_1 decimal
price_sale_currency_2 decimal
price_sale_currency_3 decimal
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_product_discount/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_product_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 186 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_id=&product_id_=&product_type=&discount_type=&discount_value=&qty_discount_1=&qty_discount_type_1=&qty_discount_value_1=&qty_discount_2=&qty_discount_type_2=&qty_discount_value_2=
Name Type Enum
module_id int
product_id_ string
product_type enum PRODUCT
LISTING
discount_type enum PERCENT
DISCOUNT
PRICE
discount_value decimal
qty_discount_1 decimal
qty_discount_type_1 enum PERCENT
DISCOUNT
PRICE
qty_discount_value_1 decimal
qty_discount_2 decimal
qty_discount_type_2 enum PERCENT
DISCOUNT
PRICE
qty_discount_value_2 decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_product_discount/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_product_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_product_group_discount

GET
/v7/{API_ID}/{API_KEY}/get/debtor_product_group_discount/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_product_group_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_id int
product_group_name string
discount_percent decimal
qty_discount_1 decimal
qty_discount_value_1 decimal
qty_discount_2 decimal
qty_discount_value_2 decimal
module_id_ int
module_currency_name string
product_group_id int
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_product_group_discount/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_product_group_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 124 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_id=&product_group_name=&discount_percent=&qty_discount_1=&qty_discount_value_1=&qty_discount_2=&qty_discount_value_2=
Name Type Enum
module_id int
product_group_name string
discount_percent decimal
qty_discount_1 decimal
qty_discount_value_1 decimal
qty_discount_2 decimal
qty_discount_value_2 decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_product_group_discount/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_product_group_discount/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_quote

GET
/v7/{API_ID}/{API_KEY}/get/debtor_quote/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_quote/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_id_ int
dimension_name string
time int
time_expire int
currency_name string
discount_percent decimal
lang string
attention string
address string
zip string
city string
ref_country_name string
txt string
module_id int
module_group_id int
module_name string
module_vatno string
is_blocked int
invoicing_module_id_ int
invoicing_module_name string
invoicing_module_vatno string
invoicing_module_ean decimal
invoicing_module_ean_contact string
invoicing_module_address string
invoicing_module_zip string
invoicing_module_city string
invoicing_module_country_name string
invoicing_module_attention string
quote_id_ int
sha1_ref string
is_seen_time int
is_transferred_time int
vat_amount decimal
vat_exempt_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
product_name string
product_txt string
product_product_id_ string
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_quote/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_quote/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 139 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_id_=&dimension_name=&time=&time_expire=&currency_name=&discount_percent=&lang=&attention=&address=&zip=&city=&ref_country_name=&txt=
Name Type Enum
module_id_ int
dimension_name string
time int
time_expire int
currency_name string
discount_percent decimal
lang string
attention string
address string
zip string
city string
ref_country_name string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_quote/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_quote/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_quote_product

GET
/v7/{API_ID}/{API_KEY}/get/debtor_quote_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_quote_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
quote_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
product_group_id int
product_id int
barcode_ean13 decimal
is_stocked int
vatcode_type int
is_price_cost decimal
unit_name string
is_list_listing int
is_list_pricing int
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_quote_product/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_quote_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 122 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

quote_id=&product_id_=&vatcode_name=&product_type=&qty=&discount_type=&discount_value=&price=&price_cost=&name=&unit=&txt=
Name Type Enum
quote_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_quote_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_quote_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_quote_product_list

GET
/v7/{API_ID}/{API_KEY}/get/debtor_quote_product_list/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_quote_product_list/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
quote_product_id int
product_id int
product_id_ string
product_group_id int
is_stocked int
vatcode_name string
vatcode_type int
qty decimal
price decimal
discount_percent decimal
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
name string
unit string
list_qty decimal

debtor_reminder

GET
/v7/{API_ID}/{API_KEY}/get/debtor_reminder/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_reminder/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
is_pending_court_time int
is_accepted_court_time int
is_incasso_dropped int
is_incasso_completed int
incasso_collection_id int
incasso_time_court int
module_id_ int
reminder_time int
reminder_time_due int
reminder_level int
ref_currency_name string
bank_name string
payment_rate decimal
payment_charge decimal
balance decimal
name string
payment_method int
invoicing_module_id_ int
invoicing_module_name string

debtor_subscription

GET
/v7/{API_ID}/{API_KEY}/get/debtor_subscription/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_subscription/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
module_id_ int
dimension_name string
time_start int
is_auto_send enum NO
YES
ref_currency_name string
discount_percent decimal
interval_type enum DAYS
MONTHS
interval_value int
offset_days int
lifetime int
requisition string
is_paid enum NO
YES
payment_name string
bank_name string
lang string
attention string
address string
zip string
city string
ref_country_name string
dlv_attention string
dlv_name string
dlv_address string
dlv_zip string
dlv_city string
dlv_ref_country_name string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
txt string
is_active int
has_errors int
is_ended int
module_id int
module_group_id int
module_name string
module_vatno string
module_ean decimal
module_ean_contact string
module_email string
module_email_invoice string
is_blocked int
invoicing_module_id_ int
invoicing_module_name string
invoicing_module_vatno string
invoicing_module_ean decimal
invoicing_module_ean_contact string
invoicing_module_email string
invoicing_module_email_invoice string
invoicing_module_address string
invoicing_module_zip string
invoicing_module_city string
invoicing_module_country_name string
time_next_charge int
time_end int
vat_amount decimal
vat_exempt_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
product_name string
product_txt string
product_product_id_ string
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_subscription/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_subscription/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 346 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

module_id_=&dimension_name=&time_start=&is_auto_send=&ref_currency_name=&discount_percent=&interval_type=&interval_value=&offset_days=&lifetime=&requisition=&is_paid=&payment_name=&bank_name=&lang=&attention=&address=&zip=&city=&ref_country_name=&dlv_attention=&dlv_name=&dlv_address=&dlv_zip=&dlv_city=&dlv_ref_country_name=&payment_method=&txt=
Name Type Enum
module_id_ int
dimension_name string
time_start int
is_auto_send enum NO
YES
ref_currency_name string
discount_percent decimal
interval_type enum DAYS
MONTHS
interval_value int
offset_days int
lifetime int
requisition string
is_paid enum NO
YES
payment_name string
bank_name string
lang string
attention string
address string
zip string
city string
ref_country_name string
dlv_attention string
dlv_name string
dlv_address string
dlv_zip string
dlv_city string
dlv_ref_country_name string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_subscription/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_subscription/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_subscription_group

GET
/v7/{API_ID}/{API_KEY}/get/debtor_subscription_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_subscription_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
is_auto_charge enum NO
YES
dimension_name string
time_start int
ref_currency_name string
discount_percent decimal
interval_type enum DAYS
MONTHS
interval_value int
offset_days int
name string
is_paid enum NO
YES
payment_name string
bank_name string
lang string
txt string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
is_active int
is_charge_ready int
has_errors int
time_next_charge int
vat_amount decimal
vat_exempt_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_subscription_group/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_subscription_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 191 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

is_auto_charge=&dimension_name=&time_start=&ref_currency_name=&discount_percent=&interval_type=&interval_value=&offset_days=&name=&is_paid=&payment_name=&bank_name=&lang=&txt=&payment_method=
Name Type Enum
is_auto_charge enum NO
YES
dimension_name string
time_start int
ref_currency_name string
discount_percent decimal
interval_type enum DAYS
MONTHS
interval_value int
offset_days int
name string
is_paid enum NO
YES
payment_name string
bank_name string
lang string
txt string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_subscription_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_subscription_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_subscription_group_product

GET
/v7/{API_ID}/{API_KEY}/get/debtor_subscription_group_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_subscription_group_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
subscription_group_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
product_group_id int
product_id int
barcode_ean13 decimal
is_stocked int
vatcode_type int
is_price_cost decimal
is_list_listing int
is_list_pricing int
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_subscription_group_product/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_subscription_group_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 135 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

subscription_group_id=&product_id_=&vatcode_name=&product_type=&qty=&discount_type=&discount_value=&price=&price_cost=&name=&unit=&txt=
Name Type Enum
subscription_group_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_subscription_group_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_subscription_group_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_subscription_group_product_list

GET
/v7/{API_ID}/{API_KEY}/get/debtor_subscription_group_product_list/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_subscription_group_product_list/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
subscription_group_product_id int
product_id int
product_id_ string
product_group_id int
is_stocked int
vatcode_name string
vatcode_type int
qty decimal
price decimal
discount_percent decimal
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
name string
unit string
list_qty decimal

debtor_subscription_product

GET
/v7/{API_ID}/{API_KEY}/get/debtor_subscription_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_subscription_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
subscription_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
product_group_id int
product_id int
barcode_ean13 decimal
is_stocked int
vatcode_type int
is_price_cost decimal
is_list_listing int
is_list_pricing int
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
PUT
/v7/{API_ID}/{API_KEY}/put/debtor_subscription_product/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/debtor_subscription_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 129 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

subscription_id=&product_id_=&vatcode_name=&product_type=&qty=&discount_type=&discount_value=&price=&price_cost=&name=&unit=&txt=
Name Type Enum
subscription_id int
product_id_ string
vatcode_name string
product_type enum PRODUCT
LISTING
qty decimal
discount_type enum PERCENT
DISCOUNT
discount_value decimal
price decimal
price_cost decimal
name string
unit string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/debtor_subscription_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/debtor_subscription_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

debtor_subscription_product_list

GET
/v7/{API_ID}/{API_KEY}/get/debtor_subscription_product_list/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/debtor_subscription_product_list/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
subscription_product_id int
product_id int
product_id_ string
product_group_id int
is_stocked int
vatcode_name string
vatcode_type int
qty decimal
price decimal
discount_percent decimal
vat_amount decimal
total_amount decimal
total_weight decimal
profit_amount decimal
name string
unit string
list_qty decimal

dimension

GET
/v7/{API_ID}/{API_KEY}/get/dimension/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/dimension/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
name string
PUT
/v7/{API_ID}/{API_KEY}/put/dimension/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/dimension/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 5 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=
Name Type Enum
name string
DELETE
/v7/{API_ID}/{API_KEY}/delete/dimension/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/dimension/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

draft

GET
/v7/{API_ID}/{API_KEY}/get/draft/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/draft/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
name string
PUT
/v7/{API_ID}/{API_KEY}/put/draft/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/draft/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 5 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=
Name Type Enum
name string
DELETE
/v7/{API_ID}/{API_KEY}/delete/draft/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/draft/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

enclosure

GET
/v7/{API_ID}/{API_KEY}/get/enclosure/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/enclosure/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
time int
draft_id int
enc_id_ int
txt string
note string
year_id int
is_booked int
system int
has_vouchers int
balance_amount decimal
vat_amount decimal
profit_amount decimal
PUT
/v7/{API_ID}/{API_KEY}/put/enclosure/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/enclosure/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 35 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

time=&draft_id=&enc_id_=&txt=&note=
Name Type Enum
time int
draft_id int
enc_id_ int
txt string
note string
DELETE
/v7/{API_ID}/{API_KEY}/delete/enclosure/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/enclosure/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

followup

GET
/v7/{API_ID}/{API_KEY}/get/followup/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/followup/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
opportunity_id int
time int
type enum UNSOLICITED
AGREEMENT
note string
contact_id int
contact_name string
contact_phone string
contact_email string
module_id int
opportunity_name string
opportunity_priority int
opportunity_status int
opportunity_ended_time int
opportunity_txt string
time_last_followup int
is_finished int
PUT
/v7/{API_ID}/{API_KEY}/put/followup/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/followup/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 33 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

opportunity_id=&time=&type=&note=
Name Type Enum
opportunity_id int
time int
type enum UNSOLICITED
AGREEMENT
note string
DELETE
/v7/{API_ID}/{API_KEY}/delete/followup/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/followup/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

item

GET
/v7/{API_ID}/{API_KEY}/get/item/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/item/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
item_group_name string
status enum DEVELOPMENT
RELEASED
CLOSED
item_id_ string
name string
product_id_ string
item_version_id int
current_item_version_id int
version int
version_time int
base_item_id_ string
is_pending_version_update int
PUT
/v7/{API_ID}/{API_KEY}/put/item/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/item/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 53 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

item_group_name=&status=&item_id_=&name=&product_id_=
Name Type Enum
item_group_name string
status enum DEVELOPMENT
RELEASED
CLOSED
item_id_ string
name string
product_id_ string
DELETE
/v7/{API_ID}/{API_KEY}/delete/item/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/item/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

item_group

GET
/v7/{API_ID}/{API_KEY}/get/item_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/item_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
name string
prefix string
is_consecutive enum NO
YES
PUT
/v7/{API_ID}/{API_KEY}/put/item_group/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/item_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 29 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=&prefix=&is_consecutive=
Name Type Enum
name string
prefix string
is_consecutive enum NO
YES
DELETE
/v7/{API_ID}/{API_KEY}/delete/item_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/item_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

item_version

GET
/v7/{API_ID}/{API_KEY}/get/item_version/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/item_version/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
PUT
/v7/{API_ID}/{API_KEY}/put/item_version/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/item_version/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 0 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

Name Type Enum
DELETE
/v7/{API_ID}/{API_KEY}/delete/item_version/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/item_version/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

location

GET
/v7/{API_ID}/{API_KEY}/get/location/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/location/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
name string
txt string
PUT
/v7/{API_ID}/{API_KEY}/put/location/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/location/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 10 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=&txt=
Name Type Enum
name string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/location/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/location/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

opportunity

GET
/v7/{API_ID}/{API_KEY}/get/opportunity/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/opportunity/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
contact_name string
priority int
name string
txt string
contact_id int
contact_phone string
contact_email string
module_id int
time_last_followup int
time_next_followup int
time_start int
is_ended_time int
status int
contact_group_name string
PUT
/v7/{API_ID}/{API_KEY}/put/opportunity/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/opportunity/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 34 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

contact_name=&priority=&name=&txt=
Name Type Enum
contact_name string
priority int
name string
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/opportunity/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/opportunity/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

part

GET
/v7/{API_ID}/{API_KEY}/get/part/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/part/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
part_group_name string
status enum DEVELOPMENT
RELEASED
CLOSED
part_id_ string
name string
part_version_id int
current_part_version_id int
version int
version_time int
base_part_id_ string
is_pending_version_update int
PUT
/v7/{API_ID}/{API_KEY}/put/part/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/part/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 40 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

part_group_name=&status=&part_id_=&name=
Name Type Enum
part_group_name string
status enum DEVELOPMENT
RELEASED
CLOSED
part_id_ string
name string
DELETE
/v7/{API_ID}/{API_KEY}/delete/part/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/part/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

part_entry

GET
/v7/{API_ID}/{API_KEY}/get/part_entry/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/part_entry/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
part_id int
type enum ITEM
PART
material_id_ string
qty decimal
part_version_id int
item_id_ string
item_version int
item_time int
item_name string
child_part_id int
child_part_version_id int
part_id_ string
part_version int
part_time int
part_name string
PUT
/v7/{API_ID}/{API_KEY}/put/part_entry/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/part_entry/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 33 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

part_id=&type=&material_id_=&qty=
Name Type Enum
part_id int
type enum ITEM
PART
material_id_ string
qty decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/part_entry/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/part_entry/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

part_group

GET
/v7/{API_ID}/{API_KEY}/get/part_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/part_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
name string
prefix string
is_consecutive enum NO
YES
PUT
/v7/{API_ID}/{API_KEY}/put/part_group/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/part_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 29 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=&prefix=&is_consecutive=
Name Type Enum
name string
prefix string
is_consecutive enum NO
YES
DELETE
/v7/{API_ID}/{API_KEY}/delete/part_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/part_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

part_version

GET
/v7/{API_ID}/{API_KEY}/get/part_version/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/part_version/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
PUT
/v7/{API_ID}/{API_KEY}/put/part_version/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/part_version/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 0 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

Name Type Enum
DELETE
/v7/{API_ID}/{API_KEY}/delete/part_version/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/part_version/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

payment

GET
/v7/{API_ID}/{API_KEY}/get/payment/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/payment/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
name string
type enum NET
MONTH_CURRENT
days decimal
rate decimal
charge decimal
txt string
PUT
/v7/{API_ID}/{API_KEY}/put/payment/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/payment/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 36 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=&type=&days=&rate=&charge=&txt=
Name Type Enum
name string
type enum NET
MONTH_CURRENT
days decimal
rate decimal
charge decimal
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/payment/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/payment/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

product

GET
/v7/{API_ID}/{API_KEY}/get/product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
product_id_ string
product_group_name string
location_name string
unit_name string
name string
is_stocked_serial enum NO
YES
is_stocked_batch enum NO
YES
price_sale decimal
price_sale_currency_1 decimal
price_sale_currency_2 decimal
price_sale_currency_3 decimal
price_cost_indicative decimal
weight decimal
is_vatcode enum NO
YES
qty_min decimal
barcode_ean13 decimal
txt string
txt_internal string
block_id int
type int
product_group_id int
unit_id int
in_stock decimal
in_order decimal
in_supplier_order decimal
in_total decimal
stock_status int
time_stock_change int
is_stocked int
turnover_ratio decimal
turnover_group string
turnover_trend decimal
profit_ratio decimal
profit_ratio_indicative decimal
price_cost decimal
PUT
/v7/{API_ID}/{API_KEY}/put/product/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 268 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

product_id_=&product_group_name=&location_name=&unit_name=&name=&is_stocked_serial=&is_stocked_batch=&price_sale=&price_sale_currency_1=&price_sale_currency_2=&price_sale_currency_3=&price_cost_indicative=&weight=&is_vatcode=&qty_min=&barcode_ean13=&txt=&txt_internal=
Name Type Enum
product_id_ string
product_group_name string
location_name string
unit_name string
name string
is_stocked_serial enum NO
YES
is_stocked_batch enum NO
YES
price_sale decimal
price_sale_currency_1 decimal
price_sale_currency_2 decimal
price_sale_currency_3 decimal
price_cost_indicative decimal
weight decimal
is_vatcode enum NO
YES
qty_min decimal
barcode_ean13 decimal
txt string
txt_internal string
DELETE
/v7/{API_ID}/{API_KEY}/delete/product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

product_currency

GET
/v7/{API_ID}/{API_KEY}/get/product_currency/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/product_currency/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
is_active enum NO
YES
ref_currency_name string
seq int
PUT
/v7/{API_ID}/{API_KEY}/put/product_currency/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/product_currency/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 29 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

is_active=&ref_currency_name=
Name Type Enum
is_active enum NO
YES
ref_currency_name string

product_group

GET
/v7/{API_ID}/{API_KEY}/get/product_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/product_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
is_stocked enum NO
YES
sales_account_id_ int
costs_account_id_ int
name string
block_id int
sales_account_name string
costs_account_name string
PUT
/v7/{API_ID}/{API_KEY}/put/product_group/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/product_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 55 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

is_stocked=&sales_account_id_=&costs_account_id_=&name=
Name Type Enum
is_stocked enum NO
YES
sales_account_id_ int
costs_account_id_ int
name string
DELETE
/v7/{API_ID}/{API_KEY}/delete/product_group/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/product_group/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

product_list

GET
/v7/{API_ID}/{API_KEY}/get/product_list/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/product_list/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
product_id_ string
product_group_name string
unit_name string
is_list_listing enum NO
YES
is_list_pricing enum NO
YES
name string
txt string
txt_internal string
product_group_id int
price_sale decimal
price_sale_currency_1 decimal
price_sale_currency_2 decimal
price_sale_currency_3 decimal
PUT
/v7/{API_ID}/{API_KEY}/put/product_list/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/product_list/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 102 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

product_id_=&product_group_name=&unit_name=&is_list_listing=&is_list_pricing=&name=&txt=&txt_internal=
Name Type Enum
product_id_ string
product_group_name string
unit_name string
is_list_listing enum NO
YES
is_list_pricing enum NO
YES
name string
txt string
txt_internal string
DELETE
/v7/{API_ID}/{API_KEY}/delete/product_list/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/product_list/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

product_list_product

GET
/v7/{API_ID}/{API_KEY}/get/product_list_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/product_list_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
product_list_id int
product_id_ string
qty decimal
is_price_override enum NO
YES
price_sale_override decimal
price_sale_currency_1_override decimal
price_sale_currency_2_override decimal
price_sale_currency_3_override decimal
block_id int
product_id int
name string
is_stocked int
price_sale decimal
price_sale_currency_1 decimal
price_sale_currency_2 decimal
price_sale_currency_3 decimal
PUT
/v7/{API_ID}/{API_KEY}/put/product_list_product/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/product_list_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 170 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

product_list_id=&product_id_=&qty=&is_price_override=&price_sale_override=&price_sale_currency_1_override=&price_sale_currency_2_override=&price_sale_currency_3_override=
Name Type Enum
product_list_id int
product_id_ string
qty decimal
is_price_override enum NO
YES
price_sale_override decimal
price_sale_currency_1_override decimal
price_sale_currency_2_override decimal
price_sale_currency_3_override decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/product_list_product/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/product_list_product/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

product_supplier

GET
/v7/{API_ID}/{API_KEY}/get/product_supplier/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/product_supplier/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
product_id_ string
module_id_ int
supplier_product_id_ string
price_cost decimal
price_cost_max decimal
qty_min decimal
product_id int
product_name string
product_txt string
module_id int
module_name string
module_currency string
PUT
/v7/{API_ID}/{API_KEY}/put/product_supplier/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/product_supplier/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 83 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

product_id_=&module_id_=&supplier_product_id_=&price_cost=&price_cost_max=&qty_min=
Name Type Enum
product_id_ string
module_id_ int
supplier_product_id_ string
price_cost decimal
price_cost_max decimal
qty_min decimal
DELETE
/v7/{API_ID}/{API_KEY}/delete/product_supplier/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/product_supplier/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

stock_adjustment

GET
/v7/{API_ID}/{API_KEY}/get/stock_adjustment/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/stock_adjustment/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
type enum ADJUSTMENT
OPENING
time int
product_id_ string
serial string
batch string
time_expire int
txt string
qty decimal
price_cost decimal
costs_account_id_ int
product_id int
product_name string
costs_account_name string
PUT
/v7/{API_ID}/{API_KEY}/put/stock_adjustment/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/stock_adjustment/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 93 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

type=&time=&product_id_=&serial=&batch=&time_expire=&txt=&qty=&price_cost=&costs_account_id_=
Name Type Enum
type enum ADJUSTMENT
OPENING
time int
product_id_ string
serial string
batch string
time_expire int
txt string
qty decimal
price_cost decimal
costs_account_id_ int
DELETE
/v7/{API_ID}/{API_KEY}/delete/stock_adjustment/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/stock_adjustment/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

unit

GET
/v7/{API_ID}/{API_KEY}/get/unit/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/unit/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
name string
PUT
/v7/{API_ID}/{API_KEY}/put/unit/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/unit/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 5 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

name=
Name Type Enum
name string
DELETE
/v7/{API_ID}/{API_KEY}/delete/unit/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/unit/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

vatcode

GET
/v7/{API_ID}/{API_KEY}/get/vatcode/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/vatcode/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
account_id_ int
accountoff_id_ int
name string
type enum GROSS
NET
percent decimal
deduction_percent decimal
txt string
account_name string
accountoff_name string
PUT
/v7/{API_ID}/{API_KEY}/put/vatcode/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/vatcode/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 73 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

account_id_=&accountoff_id_=&name=&type=&percent=&deduction_percent=&txt=
Name Type Enum
account_id_ int
accountoff_id_ int
name string
type enum GROSS
NET
percent decimal
deduction_percent decimal
txt string
DELETE
/v7/{API_ID}/{API_KEY}/delete/vatcode/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/vatcode/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

year

GET
/v7/{API_ID}/{API_KEY}/get/year/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/year/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
start_month string
start_year string
months int
is_closed int
time_start int
time_end int
enc_next_id_ int
closing_profit_amount decimal
closing_profit_net_amount decimal
is_annual_report_time int
PUT
/v7/{API_ID}/{API_KEY}/put/year/{ENTRY_ID}
HTTP request:
POST /v7/{API_ID}/{API_KEY}/put/year/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 32 
Accept-encoding: gzip
X-Hash: 3da541559918a808c2402bba5012f6c60b27661c

start_month=&start_year=&months=
Name Type Enum
start_month string
start_year string
months int
DELETE
/v7/{API_ID}/{API_KEY}/delete/year/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/delete/year/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: d783960912ff04c75bdc7b19e3ef5cf40d3bb973

year_period

GET
/v7/{API_ID}/{API_KEY}/get/year_period/{ENTRY_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/year_period/{ENTRY_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f2f2c7476f0e12b12f4dea0908186cbf28ab577d
Name Type Enum
id int
year_id int
is_readonly int
year int
month int

Action

activate_debtor_subscription

ACTION
/v7/{API_ID}/{API_KEY}/action/activate_debtor_subscription
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/activate_debtor_subscription HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 16
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

subscription_id=
Name Type Enum Description
subscription_id int

activate_debtor_subscription_group

ACTION
/v7/{API_ID}/{API_KEY}/action/activate_debtor_subscription_group
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/activate_debtor_subscription_group HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 22
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

subscription_group_id=
Name Type Enum Description
subscription_group_id int

approve_creditor_order

ACTION
/v7/{API_ID}/{API_KEY}/action/approve_creditor_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/approve_creditor_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 39
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

order_id=&time_delivery=&time_approved=
Name Type Enum Description
order_id int
time_delivery date UNIX timestamp
time_approved date UNIX timestamp

approve_debtor_order

ACTION
/v7/{API_ID}/{API_KEY}/action/approve_debtor_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/approve_debtor_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 24
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

order_id=&time_delivery=
Name Type Enum Description
order_id int
time_delivery date UNIX timestamp

attach_voucher

ACTION
/v7/{API_ID}/{API_KEY}/action/attach_voucher
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/attach_voucher HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 25
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

voucher_id=&enclosure_id=
Name Type Enum Description
voucher_id int
enclosure_id int

auto_match_module

ACTION
/v7/{API_ID}/{API_KEY}/action/auto_match_module
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/auto_match_module HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 5
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

type=
Name Type Enum Description
type enum DEBTOR
CREDITOR

auto_reconciliate

ACTION
/v7/{API_ID}/{API_KEY}/action/auto_reconciliate
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/auto_reconciliate HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 11
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

account_id=
Name Type Enum Description
account_id int

bank_enclosure

ACTION
/v7/{API_ID}/{API_KEY}/action/bank_enclosure
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/bank_enclosure HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 160
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

account_id=&transactions=&draft_id=&time=&enc_id_=&txt=&note=&account_id_=&dimension_name=&vatcode_name=&type=&currency_name=&currency_rate=&invoices=&vouchers=
Name Type Enum Description
account_id int
transactions list String with comma seperated values
Example: "?transactions=value1,value2&..."
draft_id int
time date UNIX timestamp
enc_id_ int
txt string
note string
account_id_ int
dimension_name string
vatcode_name string
type enum LEDGER
DEBTOR_LEDGER
CREDITOR_LEDGER
DEBTOR_INVOICE
CREDITOR_INVOICE
currency_name string
currency_rate decimal
invoices list String with comma seperated values
Example: "?invoices=value1,value2&..."
vouchers list String with comma seperated values
Example: "?vouchers=value1,value2&..."

block_debtor

ACTION
/v7/{API_ID}/{API_KEY}/action/block_debtor
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/block_debtor HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 10
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module_id=
Name Type Enum Description
module_id int

book_creditor_invoice

ACTION
/v7/{API_ID}/{API_KEY}/action/book_creditor_invoice
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/book_creditor_invoice HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 49
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&book_payment=&accountoff_id_=&amount=
Name Type Enum Description
invoice_id int
book_payment enum NO_AMOUNT
FULL_AMOUNT
CUSTOM_AMOUNT
accountoff_id_ int
amount decimal

book_creditor_invoice_payment

ACTION
/v7/{API_ID}/{API_KEY}/action/book_creditor_invoice_payment
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/book_creditor_invoice_payment HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 65
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&draft_id=&time=&book_payment=&accountoff_id_=&amount=
Name Type Enum Description
invoice_id int
draft_id int
time date UNIX timestamp
book_payment enum FULL_AMOUNT
CUSTOM_AMOUNT
accountoff_id_ int
amount decimal

book_debtor_invoice

ACTION
/v7/{API_ID}/{API_KEY}/action/book_debtor_invoice
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/book_debtor_invoice HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 49
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&book_payment=&accountoff_id_=&amount=
Name Type Enum Description
invoice_id int
book_payment enum NO_AMOUNT
FULL_AMOUNT
CUSTOM_AMOUNT
accountoff_id_ int
amount decimal

book_debtor_invoice_payment

ACTION
/v7/{API_ID}/{API_KEY}/action/book_debtor_invoice_payment
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/book_debtor_invoice_payment HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 65
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&draft_id=&time=&book_payment=&accountoff_id_=&amount=
Name Type Enum Description
invoice_id int
draft_id int
time date UNIX timestamp
book_payment enum FULL_AMOUNT
CUSTOM_AMOUNT
accountoff_id_ int
amount decimal

book_draft

ACTION
/v7/{API_ID}/{API_KEY}/action/book_draft
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/book_draft HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 9
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

draft_id=
Name Type Enum Description
draft_id int

book_fi_payments

ACTION
/v7/{API_ID}/{API_KEY}/action/book_fi_payments
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/book_fi_payments HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 47
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

account_id=&draft_id=&diff_account_id_=&fi=&bs=
Name Type Enum Description
account_id int
draft_id int
diff_account_id_ int
fi json JSON encoded string
bs json JSON encoded string

book_reminder

ACTION
/v7/{API_ID}/{API_KEY}/action/book_reminder
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/book_reminder HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 85
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module_id=&level=&time_due=&is_charge_rate=&charge_amount=&payment_method=&bank_name=
Name Type Enum Description
module_id int
level int
time_due date UNIX timestamp
is_charge_rate enum NO
YES
charge_amount decimal
payment_method enum BANK_ACCOUNT
FI71
bank_name string

book_stock_adjustment_draft

ACTION
/v7/{API_ID}/{API_KEY}/action/book_stock_adjustment_draft
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/book_stock_adjustment_draft HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 0
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

Name Type Enum Description
No fields

book_voucher_ocr

ACTION
/v7/{API_ID}/{API_KEY}/action/book_voucher_ocr
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/book_voucher_ocr HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 9
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

draft_id=
Name Type Enum Description
draft_id int

charge_subscription_group

ACTION
/v7/{API_ID}/{API_KEY}/action/charge_subscription_group
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/charge_subscription_group HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 22
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

subscription_group_id=
Name Type Enum Description
subscription_group_id int

close_year

ACTION
/v7/{API_ID}/{API_KEY}/action/close_year
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/close_year HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 8
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

year_id=
Name Type Enum Description
year_id int

complete_followup

ACTION
/v7/{API_ID}/{API_KEY}/action/complete_followup
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/complete_followup HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 12
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

followup_id=
Name Type Enum Description
followup_id int

contact_attach_user

ACTION
/v7/{API_ID}/{API_KEY}/action/contact_attach_user
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/contact_attach_user HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 22
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

contact_id=&user_name=
Name Type Enum Description
contact_id int
user_name string

contact_attach_user_group

ACTION
/v7/{API_ID}/{API_KEY}/action/contact_attach_user_group
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/contact_attach_user_group HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 28
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

contact_id=&user_group_name=
Name Type Enum Description
contact_id int
user_group_name string

contact_detach_user

ACTION
/v7/{API_ID}/{API_KEY}/action/contact_detach_user
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/contact_detach_user HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 16
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

contact_user_id=
Name Type Enum Description
contact_user_id int

contact_detach_user_group

ACTION
/v7/{API_ID}/{API_KEY}/action/contact_detach_user_group
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/contact_detach_user_group HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 22
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

contact_user_group_id=
Name Type Enum Description
contact_user_group_id int

convert_currency

ACTION
/v7/{API_ID}/{API_KEY}/action/convert_currency
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/convert_currency HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 9
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

to=&from=
Name Type Enum Description
to string
from string

copy_creditor_invoice

ACTION
/v7/{API_ID}/{API_KEY}/action/copy_creditor_invoice
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/copy_creditor_invoice HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 17
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&time=
Name Type Enum Description
invoice_id int
time date UNIX timestamp

copy_creditor_order

ACTION
/v7/{API_ID}/{API_KEY}/action/copy_creditor_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/copy_creditor_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 15
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

order_id=&time=
Name Type Enum Description
order_id int
time date UNIX timestamp

copy_debtor_invoice

ACTION
/v7/{API_ID}/{API_KEY}/action/copy_debtor_invoice
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/copy_debtor_invoice HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 17
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&time=
Name Type Enum Description
invoice_id int
time date UNIX timestamp

copy_debtor_order

ACTION
/v7/{API_ID}/{API_KEY}/action/copy_debtor_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/copy_debtor_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 15
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

order_id=&time=
Name Type Enum Description
order_id int
time date UNIX timestamp

copy_debtor_quote

ACTION
/v7/{API_ID}/{API_KEY}/action/copy_debtor_quote
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/copy_debtor_quote HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 15
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

quote_id=&time=
Name Type Enum Description
quote_id int
time date UNIX timestamp

credit_debtor_invoice

ACTION
/v7/{API_ID}/{API_KEY}/action/credit_debtor_invoice
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/credit_debtor_invoice HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 27
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&time=&products=
Name Type Enum Description
invoice_id int
time date UNIX timestamp
products map Key/value pairs
Example: "?products[key1]=value1&..."

deactivate_debtor_subscription

ACTION
/v7/{API_ID}/{API_KEY}/action/deactivate_debtor_subscription
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/deactivate_debtor_subscription HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 16
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

subscription_id=
Name Type Enum Description
subscription_id int

deactivate_debtor_subscription_group

ACTION
/v7/{API_ID}/{API_KEY}/action/deactivate_debtor_subscription_group
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/deactivate_debtor_subscription_group HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 22
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

subscription_group_id=
Name Type Enum Description
subscription_group_id int

delete_booked_enclosure

ACTION
/v7/{API_ID}/{API_KEY}/action/delete_booked_enclosure
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/delete_booked_enclosure HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 13
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

enclosure_id=
Name Type Enum Description
enclosure_id int

delete_logo

ACTION
/v7/{API_ID}/{API_KEY}/action/delete_logo

delete_reminder

ACTION
/v7/{API_ID}/{API_KEY}/action/delete_reminder
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/delete_reminder HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 10
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module_id=
Name Type Enum Description
module_id int

detach_voucher

ACTION
/v7/{API_ID}/{API_KEY}/action/detach_voucher
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/detach_voucher HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 11
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

voucher_id=
Name Type Enum Description
voucher_id int

disapprove_creditor_order

ACTION
/v7/{API_ID}/{API_KEY}/action/disapprove_creditor_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/disapprove_creditor_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 9
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

order_id=
Name Type Enum Description
order_id int

disapprove_debtor_order

ACTION
/v7/{API_ID}/{API_KEY}/action/disapprove_debtor_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/disapprove_debtor_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 9
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

order_id=
Name Type Enum Description
order_id int

empty_draft

ACTION
/v7/{API_ID}/{API_KEY}/action/empty_draft
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/empty_draft HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 9
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

draft_id=
Name Type Enum Description
draft_id int

factoring_invoice_price

ACTION
/v7/{API_ID}/{API_KEY}/action/factoring_invoice_price
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/factoring_invoice_price HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 13
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

amount=&days=
Name Type Enum Description
amount decimal
days int

get_fi_payments

ACTION
/v7/{API_ID}/{API_KEY}/action/get_fi_payments
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/get_fi_payments HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 11
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

account_id=
Name Type Enum Description
account_id int

get_last_bom_version

ACTION
/v7/{API_ID}/{API_KEY}/action/get_last_bom_version
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/get_last_bom_version HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 3
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

id=
Name Type Enum Description
id int

get_last_item_version

ACTION
/v7/{API_ID}/{API_KEY}/action/get_last_item_version
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/get_last_item_version HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 3
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

id=
Name Type Enum Description
id int

get_last_part_version

ACTION
/v7/{API_ID}/{API_KEY}/action/get_last_part_version
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/get_last_part_version HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 3
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

id=
Name Type Enum Description
id int

get_next_enc_id_

ACTION
/v7/{API_ID}/{API_KEY}/action/get_next_enc_id_
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/get_next_enc_id_ HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 5
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

time=
Name Type Enum Description
time date UNIX timestamp

get_next_module_id_

ACTION
/v7/{API_ID}/{API_KEY}/action/get_next_module_id_
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/get_next_module_id_ HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 5
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

type=
Name Type Enum Description
type enum DEBTOR
CREDITOR

get_stock_product

ACTION
/v7/{API_ID}/{API_KEY}/action/get_stock_product
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/get_stock_product HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 11
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

product_id=
Name Type Enum Description
product_id int

get_stock_product_all

ACTION
/v7/{API_ID}/{API_KEY}/action/get_stock_product_all
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/get_stock_product_all HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 0
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

Name Type Enum Description
No fields

get_stock_product_batches

ACTION
/v7/{API_ID}/{API_KEY}/action/get_stock_product_batches
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/get_stock_product_batches HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 11
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

product_id=
Name Type Enum Description
product_id int

get_stock_product_serials

ACTION
/v7/{API_ID}/{API_KEY}/action/get_stock_product_serials
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/get_stock_product_serials HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 11
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

product_id=
Name Type Enum Description
product_id int

invoice_creditor_order

ACTION
/v7/{API_ID}/{API_KEY}/action/invoice_creditor_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/invoice_creditor_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 121
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

order_id=&time=&time_received=&invoice_id_=&fi_payment_id_=&payment_name=&book_payment=&accountoff_id_=&amount=&products=
Name Type Enum Description
order_id int
time date UNIX timestamp
time_received date UNIX timestamp
invoice_id_ int
fi_payment_id_ int
payment_name string
book_payment enum NO_AMOUNT
FULL_AMOUNT
CUSTOM_AMOUNT
accountoff_id_ int
amount decimal
products map Key/value pairs
Example: "?products[key1]=value1&..."

invoice_debtor_order

ACTION
/v7/{API_ID}/{API_KEY}/action/invoice_debtor_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/invoice_debtor_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 113
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

order_id=&time=&is_paid=&payment_name=&payment_method=&bank_name=&book_payment=&accountoff_id_=&amount=&products=
Name Type Enum Description
order_id int
time date UNIX timestamp
is_paid enum NO
YES
payment_name string
payment_method enum BANK_ACCOUNT
FI71
FI71+PBS
bank_name string
book_payment enum NO_AMOUNT
FULL_AMOUNT
CUSTOM_AMOUNT
accountoff_id_ int
amount decimal
products map Key/value pairs
Example: "?products[key1]=value1&..."

lock_year_period

ACTION
/v7/{API_ID}/{API_KEY}/action/lock_year_period
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/lock_year_period HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 23
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

period_id=&is_readonly=
Name Type Enum Description
period_id int
is_readonly enum NO
YES

match_module

ACTION
/v7/{API_ID}/{API_KEY}/action/match_module
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/match_module HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 25
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

type=&invoices=&payments=
Name Type Enum Description
type enum DEBTOR
CREDITOR
invoices list String with comma seperated values
Example: "?invoices=value1,value2&..."
payments list String with comma seperated values
Example: "?payments=value1,value2&..."

merge_vouchers

ACTION
/v7/{API_ID}/{API_KEY}/action/merge_vouchers
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/merge_vouchers HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 13
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

enclosure_id=
Name Type Enum Description
enclosure_id int

propagate_update_creditor_group

ACTION
/v7/{API_ID}/{API_KEY}/action/propagate_update_creditor_group
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/propagate_update_creditor_group HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 25
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module_group_id=&updates=
Name Type Enum Description
module_group_id int
updates list String with comma seperated values
Example: "?updates=value1,value2&..."

propagate_update_debtor_group

ACTION
/v7/{API_ID}/{API_KEY}/action/propagate_update_debtor_group
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/propagate_update_debtor_group HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 25
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module_group_id=&updates=
Name Type Enum Description
module_group_id int
updates list String with comma seperated values
Example: "?updates=value1,value2&..."

reconciliate

ACTION
/v7/{API_ID}/{API_KEY}/action/reconciliate
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/reconciliate HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 38
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

account_id=&accountings=&transactions=
Name Type Enum Description
account_id int
accountings list String with comma seperated values
Example: "?accountings=value1,value2&..."
transactions list String with comma seperated values
Example: "?transactions=value1,value2&..."

reopen_year

ACTION
/v7/{API_ID}/{API_KEY}/action/reopen_year
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/reopen_year HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 8
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

year_id=
Name Type Enum Description
year_id int

resend_user_email_verification

ACTION
/v7/{API_ID}/{API_KEY}/action/resend_user_email_verification
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/resend_user_email_verification HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 8
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

user_id=
Name Type Enum Description
user_id int

rotate_voucher

ACTION
/v7/{API_ID}/{API_KEY}/action/rotate_voucher
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/rotate_voucher HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 11
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

id=&rotate=
Name Type Enum Description
id int
rotate enum RIGHT
LEFT

search_bank_recon

ACTION
/v7/{API_ID}/{API_KEY}/action/search_bank_recon
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/search_bank_recon HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 14
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

amount=&limit=
Name Type Enum Description
amount decimal
limit int

search_enclosure

ACTION
/v7/{API_ID}/{API_KEY}/action/search_enclosure
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/search_enclosure HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 59
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

str=&account_id_=&time_start=&time_end=&is_attached=&limit=
Name Type Enum Description
str string
account_id_ int
time_start date UNIX timestamp
time_end date UNIX timestamp
is_attached enum NO
YES
limit int

send_creditor_order

ACTION
/v7/{API_ID}/{API_KEY}/action/send_creditor_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_creditor_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 34
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

order_id=&is_attached=&email=&msg=
Name Type Enum Description
order_id int
is_attached enum NO
YES
email list String with comma seperated values
Example: "?email=value1,value2&..."
msg string

send_debtor_account_statement

ACTION
/v7/{API_ID}/{API_KEY}/action/send_debtor_account_statement
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_debtor_account_statement HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 22
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module_id=&email=&msg=
Name Type Enum Description
module_id int
email list String with comma seperated values
Example: "?email=value1,value2&..."
msg string

send_debtor_creditnote

ACTION
/v7/{API_ID}/{API_KEY}/action/send_debtor_creditnote
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_debtor_creditnote HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 36
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&is_attached=&email=&msg=
Name Type Enum Description
invoice_id int
is_attached enum NO
YES
email list String with comma seperated values
Example: "?email=value1,value2&..."
msg string

send_debtor_creditnote_ean

ACTION
/v7/{API_ID}/{API_KEY}/action/send_debtor_creditnote_ean
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_debtor_creditnote_ean HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 44
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&network=&type=&ean=&ean_contact=
Name Type Enum Description
invoice_id int
network enum NHR
PEPPOL
type enum EAN
VAT
ean int
ean_contact string

send_debtor_group_account_statement

ACTION
/v7/{API_ID}/{API_KEY}/action/send_debtor_group_account_statement
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_debtor_group_account_statement HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 16
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module_group_id=
Name Type Enum Description
module_group_id int

send_debtor_invoice

ACTION
/v7/{API_ID}/{API_KEY}/action/send_debtor_invoice
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_debtor_invoice HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 36
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&is_attached=&email=&msg=
Name Type Enum Description
invoice_id int
is_attached enum NO
YES
email list String with comma seperated values
Example: "?email=value1,value2&..."
msg string

send_debtor_invoice_ean

ACTION
/v7/{API_ID}/{API_KEY}/action/send_debtor_invoice_ean
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_debtor_invoice_ean HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 44
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

invoice_id=&network=&type=&ean=&ean_contact=
Name Type Enum Description
invoice_id int
network enum NHR
PEPPOL
type enum EAN
VAT
ean int
ean_contact string

send_debtor_order

ACTION
/v7/{API_ID}/{API_KEY}/action/send_debtor_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_debtor_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 34
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

order_id=&is_attached=&email=&msg=
Name Type Enum Description
order_id int
is_attached enum NO
YES
email list String with comma seperated values
Example: "?email=value1,value2&..."
msg string

send_debtor_quote

ACTION
/v7/{API_ID}/{API_KEY}/action/send_debtor_quote
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_debtor_quote HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 34
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

quote_id=&is_attached=&email=&msg=
Name Type Enum Description
quote_id int
is_attached enum NO
YES
email list String with comma seperated values
Example: "?email=value1,value2&..."
msg string

send_debtor_reminder

ACTION
/v7/{API_ID}/{API_KEY}/action/send_debtor_reminder
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_debtor_reminder HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 24
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

reminder_id=&email=&msg=
Name Type Enum Description
reminder_id int
email list String with comma seperated values
Example: "?email=value1,value2&..."
msg string

send_public_creditor_document

ACTION
/v7/{API_ID}/{API_KEY}/action/send_public_creditor_document
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_public_creditor_document HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 27
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

type=&sha1_ref=&email=&msg=
Name Type Enum Description
type string
sha1_ref string
email list String with comma seperated values
Example: "?email=value1,value2&..."
msg string

send_public_debtor_document

ACTION
/v7/{API_ID}/{API_KEY}/action/send_public_debtor_document
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_public_debtor_document HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 27
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

type=&sha1_ref=&email=&msg=
Name Type Enum Description
type string
sha1_ref string
email list String with comma seperated values
Example: "?email=value1,value2&..."
msg string

send_report

ACTION
/v7/{API_ID}/{API_KEY}/action/send_report
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/send_report HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 31
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

type=&format=&cache_uid=&email=
Name Type Enum Description
type string
format string
cache_uid string
email string

split_voucher

ACTION
/v7/{API_ID}/{API_KEY}/action/split_voucher
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/split_voucher HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 25
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

voucher_id=&pages=&label=
Name Type Enum Description
voucher_id int
pages int
label string

start_debt_collection

ACTION
/v7/{API_ID}/{API_KEY}/action/start_debt_collection
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/start_debt_collection HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 294
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

debtor_id=&creditor_bank_code=&creditor_bank_account=&is_information_verified=&is_private=&debtor_name=&debtor_attention=&debtor_address=&debtor_zip=&debtor_city=&debtor_country_name=&debtor_vatno=&debtor_phone=&is_email_collection=&is_objected=&debtor_email=&fee_amount=&payment_reminder_time=
Name Type Enum Description
debtor_id int
creditor_bank_code int
creditor_bank_account int
is_information_verified enum NO
YES
is_private enum NO
YES
debtor_name string
debtor_attention string
debtor_address string
debtor_zip int
debtor_city string
debtor_country_name string
debtor_vatno string
debtor_phone string
is_email_collection enum NO
YES
is_objected enum NO
YES
debtor_email string
fee_amount int
payment_reminder_time date UNIX timestamp

transfer_bank_transactions

ACTION
/v7/{API_ID}/{API_KEY}/action/transfer_bank_transactions
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/transfer_bank_transactions HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 35
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

account_id=&draft_id=&transactions=
Name Type Enum Description
account_id int
draft_id int
transactions list String with comma seperated values
Example: "?transactions=value1,value2&..."

transfer_quote_order

ACTION
/v7/{API_ID}/{API_KEY}/action/transfer_quote_order
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/transfer_quote_order HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 22
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

quote_id=&requisition=
Name Type Enum Description
quote_id int
requisition string

unblock_debtor

ACTION
/v7/{API_ID}/{API_KEY}/action/unblock_debtor
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/unblock_debtor HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 10
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module_id=
Name Type Enum Description
module_id int

uncomplete_followup

ACTION
/v7/{API_ID}/{API_KEY}/action/uncomplete_followup
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/uncomplete_followup HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 12
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

followup_id=
Name Type Enum Description
followup_id int

unmatch_module

ACTION
/v7/{API_ID}/{API_KEY}/action/unmatch_module
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/unmatch_module HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 25
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

type=&invoices=&payments=
Name Type Enum Description
type enum DEBTOR
CREDITOR
invoices list String with comma seperated values
Example: "?invoices=value1,value2&..."
payments list String with comma seperated values
Example: "?payments=value1,value2&..."

unreconciliate

ACTION
/v7/{API_ID}/{API_KEY}/action/unreconciliate
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/unreconciliate HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 20
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

account_id=&entries=
Name Type Enum Description
account_id int
entries list String with comma seperated values
Example: "?entries=value1,value2&..."

unverify_voucher_ocr

ACTION
/v7/{API_ID}/{API_KEY}/action/unverify_voucher_ocr
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/unverify_voucher_ocr HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 11
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

voucher_id=
Name Type Enum Description
voucher_id int

verify_voucher_ocr

ACTION
/v7/{API_ID}/{API_KEY}/action/verify_voucher_ocr
HTTP request:
POST /v7/{API_ID}/{API_KEY}/action/verify_voucher_ocr HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 11
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

voucher_id=
Name Type Enum Description
voucher_id int

Document

invoice

DOCUMENT
/v7/{API_ID}/{API_KEY}/document/invoice/{DOCUMENT_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/document/invoice/{DOCUMENT_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

{DOCUMENT_ID} is invoice no.

order

DOCUMENT
/v7/{API_ID}/{API_KEY}/document/order/{DOCUMENT_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/document/order/{DOCUMENT_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

{DOCUMENT_ID} is order no.

quote

DOCUMENT
/v7/{API_ID}/{API_KEY}/document/quote/{DOCUMENT_ID}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/document/quote/{DOCUMENT_ID} HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

{DOCUMENT_ID} is quote no.

Report

ledger_balance

REPORT
/v7/{API_ID}/{API_KEY}/report/ledger_balance/json?lang=da
HTTP request:
POST /v7/{API_ID}/{API_KEY}/report/ledger_balance/json?lang=da HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 93
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

time_from=&time_to=&account_from=&account_to=&draft_entries=&closing_balance=&dimension_name=
Name Type Enum Description
time_from date UNIX timestamp
time_to date UNIX timestamp
account_from int
account_to int
draft_entries enum WITH
WITHOUT
ONLY
closing_balance enum ONLY
ALL
dimension_name string

ledger_cards

REPORT
/v7/{API_ID}/{API_KEY}/report/ledger_cards/json?lang=da
HTTP request:
POST /v7/{API_ID}/{API_KEY}/report/ledger_cards/json?lang=da HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 137
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

time_from=&time_to=&account_from=&account_to=&draft_entries=&closing_balance=&account_movements=&dimension_name=&amount=&deleted_entries=
Name Type Enum Description
time_from date UNIX timestamp
time_to date UNIX timestamp
account_from int
account_to int
draft_entries enum WITH
WITHOUT
ONLY
closing_balance enum WITH
WITHOUT
ONLY
account_movements enum ONLY
ALL
dimension_name string
amount decimal
deleted_entries enum WITHOUT
WITH

module_ledger_balance

REPORT
/v7/{API_ID}/{API_KEY}/report/module_ledger_balance/json?lang=da
HTTP request:
POST /v7/{API_ID}/{API_KEY}/report/module_ledger_balance/json?lang=da HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 89
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module=&time_from=&time_to=&module_account=&module_group=&draft_entries=&closing_balance=
Name Type Enum Description
module enum DEBTOR
CREDITOR
time_from date UNIX timestamp
time_to date UNIX timestamp
module_account int
module_group string
draft_entries enum WITH
WITHOUT
ONLY
closing_balance enum ONLY
ALL

module_ledger_cards

REPORT
/v7/{API_ID}/{API_KEY}/report/module_ledger_cards/json?lang=da
HTTP request:
POST /v7/{API_ID}/{API_KEY}/report/module_ledger_cards/json?lang=da HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 133
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module=&time_from=&time_to=&module_account=&module_group=&draft_entries=&closing_balance=&account_movements=&amount=&deleted_entries=
Name Type Enum Description
module enum DEBTOR
CREDITOR
time_from date UNIX timestamp
time_to date UNIX timestamp
module_account int
module_group string
draft_entries enum WITH
WITHOUT
ONLY
closing_balance enum ONLY
ALL
account_movements enum ONLY
ONLY_DUE
ONLY_UNMATCHED
ALL
amount decimal
deleted_entries enum WITHOUT
WITH

module_turnover

REPORT
/v7/{API_ID}/{API_KEY}/report/module_turnover/json?lang=da
HTTP request:
POST /v7/{API_ID}/{API_KEY}/report/module_turnover/json?lang=da HTTP/2
Host: api.dynaccount.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 67
Accept-encoding: gzip
X-Hash: f0990a850b5810f5049caf49284f9f97b74bc251

module=&time_from=&time_to=&module_account=&module_group=&turnover=
Name Type Enum Description
module enum DEBTOR
CREDITOR
time_from date UNIX timestamp
time_to date UNIX timestamp
module_account int
module_group string
turnover enum ONLY
ALL

Webhook


Under "Administration > API webhooks" you can setup webhooks for put (insert/update), delete, action and trigger and set an URL which will be called by Dynaccount each time the specified method is triggered.

HTTP request:
POST /url-to-your-webhook HTTP/2
Host: yourserver.com
Accept-Encoding: gzip
X-Hash: e0d93a4f73a6f24a10472e41ba000eef7798ee2a
Content-Type: application/json
Content-Length: 320

{
	"method" : "insert",
	"table" : "accounting",
	"result" : {
		...
	}
}

You can verify a webhook request from Dynaccount by the header X-Hash.

Verify webhook with PHP:
$url = 'yourserver.com/url-to-your-webhook';

$hash_verification = sha1( $url . $json_post . '{API_SECRET}' );

if($hash_verification == $header_x_hash){
	echo "Webhook request verified and approved";
}
else{
	echo "Error: Webhook could not be verified";
}

Table (put/insert_bulk/delete)

Name
account
accounting
contact
creditor
creditor_group
creditor_invoice
creditor_invoice_product
creditor_order
creditor_order_product
data_voucher
debtor
debtor_creditnote
debtor_creditnote_product
debtor_group
debtor_group_product_discount
debtor_group_product_group_discount
debtor_invoice
debtor_invoice_product
debtor_order
debtor_order_product
debtor_product_discount
debtor_product_group_discount
debtor_quote
debtor_quote_product
debtor_reminder
debtor_subscription
debtor_subscription_group
debtor_subscription_group_product
debtor_subscription_product
enclosure
followup
opportunity
product
product_group
product_list
product_list_product
product_supplier
vatcode
year

Action

Name
activate_debtor_subscription
activate_debtor_subscription_group
approve_creditor_order
approve_debtor_order
book_creditor_invoice
book_debtor_invoice
book_draft
close_year
complete_followup
deactivate_debtor_subscription
deactivate_debtor_subscription_group
disapprove_creditor_order
disapprove_debtor_order
incomplete_followup
reopen_year
set_opportunity_status
transfer_quote_order

Trigger

Name
product_stock_qty_change

PHP library


You can download a PHP library to handle all requests to the API.

Below is an example on how to get all VAT codes.

PHP:
try{
	require_once 'Account.php';
	$Dyn = new \Dynaccount_API\Account($api_id, $api_key, $api_secret);
	$Dyn->connect();
	$id = 0;
	$select = [];
	$where = [];
	$order = [];
	$limit = '';
	$result = $Dyn->get('vatcode', $id, $select, $where, $order, $limit);
	print_r($result);
	$Dyn->disconnect();
}
catch(\Dynaccount_API\Error $e){
	echo 'Error: '.$e->getMessage();
}
HTTP request:
GET /v7/{API_ID}/{API_KEY}/get/vatcode HTTP/2
Host: api.dynaccount.com
Accept-encoding: gzip
X-Hash: 58ea269911777b0ac911a9e74f510018c7a37877
HTTP response:
HTTP/2 200 OK
Date: Thu, 13 Nov 2014 18:50:49 GMT
Server: nginx
Content-Length: 1139
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Content-Type: application/json

{
	"result" : [
		{
			"id" : 8806,
			"account_id_" : 16640,
			"account_name" : "EU k\u00f8b",
			"accountoff_id_" : 16630,
			"accountoff_name" : "EU salg",
			"name" : "EI25",
			"type" : "NET",
			"percent" : 25,
			"deduction_percent" : 100,
			"txt" : "EU k\u00f8b"
		},
		...
	],
	"metadata" : {
		"page" : 1,
		"offset" : 5,
		"num" : 5,
		"order" : "name",
		"request_time" : 0.0065009593963623
	}
}

Get

PHP:
try{
	require_once 'Account.php';
	$Dyn = new \Dynaccount_API\Account($api_id, $api_key, $api_secret);
	
	//	Open connection
	$Dyn->connect();
	
	//	The resource you want to fetch
	$table = 'vatcode';
	
	//	Fetch entry by ID
	$id = 0;
	
	//	Fetch custom fields
	$select = ['name','percent'];
	
	//	Fetch by conditions
	$where = ['account_id_' => 14620];
	
	//	Order the result
	$order = ['name DESC'];
	
	//	Limit the result
	$limit = '0,10'
	
	$result = $Dyn->get($table, $id, $select, $where, $order, $limit);
	print_r($result);
	
	//	Close connection
	$Dyn->disconnect();
}
catch(\Dynaccount_API\Error $e){
	echo 'Error: '.$e->getMessage();
}

Put

PHP:
try{
	require_once 'Account.php';
	$Dyn = new \Dynaccount_API\Account($api_id, $api_key, $api_secret);
	
	//	Open connection
	$Dyn->connect();
	
	//	The resource you want to create/update
	$table = 'account';
	
	//	If this is empty (zero) you will create a new entry
	$id = 0;
	
	//	Input data
	$fields = [
		'account_id_'       => 1110,
		'name'              => 'Kontonavn',
		'type'              => 'BALANCE',
		'is_monitored'      => 'NO',
		'vatcode_name'      => '',
		'sum_account_id_'   => '',
		'ref_currency_name' => 'dkk',
		'is_dimension'      => 'NO'
	];
	
	$result = $Dyn->put($table, $id, $fields);
	print_r($result);
	
	//	Close Connection
	$Dyn->disconnect();
}
catch(\Dynaccount_API\Error $e){
	echo 'Error: '.$e->getMessage();
}

Insert_bulk

PHP:
try{
	require_once 'Account.php';
	$Dyn = new \Dynaccount_API\Account($api_id, $api_key, $api_secret);
	
	//	Open connection
	$Dyn->connect();
	
	//	The resource you want to create
	$table = 'account';
	
	//	Input data
	$entries = [
		[
			'account_id_'       => 1110,
			'name'              => 'Kontonavn',
			'type'              => 'BALANCE',
			'is_monitored'      => 'NO',
			'vatcode_name'      => '',
			'sum_account_id_'   => '',
			'ref_currency_name' => 'dkk',
			'is_dimension'      => 'NO'
		],
		[
			'account_id_'       => 1111,
			'name'              => 'Kontonavn 2',
			'type'              => 'BALANCE',
			'is_monitored'      => 'NO',
			'vatcode_name'      => '',
			'sum_account_id_'   => '',
			'ref_currency_name' => 'dkk',
			'is_dimension'      => 'NO'
		]
	];
	
	$result = $Dyn->insert_bulk($table, $entries);
	print_r($result);
	
	//	Close connection
	$Dyn->disconnect();
}
catch(\Dynaccount_API\Error $e){
	echo 'Error: '.$e->getMessage();
}

Delete

PHP:
try{
	require_once 'Account.php';
	$Dyn = new \Dynaccount_API\Account($api_id, $api_key, $api_secret);
	
	//	Open connection
	$Dyn->connect();
	
	//	The resource you want to delete
	$table = 'account';
	
	//	The entry ID
	$id = 180664;
	
	$result = $Dyn->delete($table, $id);
	print_r($result);
	
	//	Close connection
	$Dyn->disconnect();
}
catch(\Dynaccount_API\Error $e){
	echo 'Error: '.$e->getMessage();
}

Action

PHP:
try{
	require_once 'Account.php';
	$Dyn = new \Dynaccount_API\Account($api_id, $api_key, $api_secret);
	
	//	Open connection
	$Dyn->connect();
	
	//	The operation you want to execute
	$action = 'send_debtor_invoice';
	
	//	Input data
	$params = [
		'invoice_id'  => 177,
		'is_attached' => 'NO',
		'email'       => 'alias@domain.com',
		'msg'         => 'Fremsendelse af faktura'
	];
	
	$result = $Dyn->action($action, $params);
	print_r($result);
	
	//	Close connection
	$Dyn->disconnect();
}
catch(\Dynaccount_API\Error $e){
	echo 'Error: '.$e->getMessage();
}

Upload_voucher

PHP:
try{
	require_once 'Account.php';
	$Dyn = new \Dynaccount_API\Account($api_id, $api_key, $api_secret);
	
	//	Open connection
	$Dyn->connect();
	
	//	Voucher label
	$label = 'Voucher description';
	
	//	Files
	$files = ['invoice.pdf','receipt.jpg'];
	
	//	Name or email
	$from = 'Jens Jensen';
	
	$result = $Dyn->upload_voucher($label, $files, $from);
	
	//	Close connection
	$Dyn->disconnect();
}
catch(\Dynaccount_API\Error $e){
	echo 'Error: '.$e->getMessage();
}

Document

Fetch PDF document (Quote/order/invoice).

PHP:
try{
	require_once 'Account.php';
	$Dyn = new \Dynaccount_API\Account($api_id, $api_key, $api_secret);
	
	//	Open connection
	$Dyn->connect();
	
	//	Document ('invoice', 'order', 'quote')
	$document = 'invoice';
	
	//	Invoice no.
	$document_id_ = 1033;
	
	$pdf_stream = $Dyn->document($document, $document_id_);
	
	//	Close connection
	$Dyn->disconnect();
}
catch(\Dynaccount_API\Error $e){
	echo 'Error: '.$e->getMessage();
}

Report

Fetch PDF report.

PHP:
try{
	require_once 'Account.php';
	$Dyn = new \Dynaccount_API\Account($api_id, $api_key, $api_secret);
	
	//	Open connection
	$Dyn->connect();
	
	//	Report
	$report = 'ledger_cards';
	
	//	Output
	$output = 'json';
	
	//	Language
	$lang = 'da';
	
	//	Input data
	$params = [
		'time_from'         => mktime(0,0,0,1,1,2016),
		'time_to'           => mktime(0,0,0,12,31,2016),
		'account_from'      => '',
		'account_to'        => '',
		'draft_entries'     => 'WITH',
		'closing_balance'   => 'ALL',
		'account_movements' => 'ALL',
		'dimension_name'    => ''
	];
	
	$pdf_stream = $Dyn->report($report, $output, $lang, $params);
	
	//	Close connection
	$Dyn->disconnect();
}
catch(\Dynaccount_API\Error $e){
	echo 'Error: '.$e->getMessage();
}