Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invoices.update now supports optional department_id #816

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apiary.apib
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ We list all backwards-compatible additions here. These are currently available i

#### June 2024
- We added `tax` to the `products.info` endpoint.
- We added `department_id` to the `invoices.update` endpoint.

#### May 2024
- We added `purchase_order_number` to `projects-v2/projects.info`, `projects-v2/projects.create` and `projects-v2/projects.update`.
Expand Down Expand Up @@ -4549,6 +4550,7 @@ Update a draft invoice. Booked invoices cannot be updated.
+ One Of
+ name `Finance Dept.` (string, required)
+ contact_id: `417a2231-c3c7-4e1c-a6bb-1b014836ca60` (string, required)
+ department_id: `cef01135-7e51-4f6f-a6eb-6e5e5a885ac7` (string, optional)
+ payment_term (PaymentTerm, optional)
+ currency (object)
+ code: `EUR` (Currency, required)
Expand Down
1 change: 1 addition & 0 deletions src/05-invoicing/invoices.apib
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ Update a draft invoice. Booked invoices cannot be updated.
+ One Of
+ name `Finance Dept.` (string, required)
+ contact_id: `417a2231-c3c7-4e1c-a6bb-1b014836ca60` (string, required)
+ department_id: `cef01135-7e51-4f6f-a6eb-6e5e5a885ac7` (string, optional)
+ payment_term (PaymentTerm, optional)
+ currency (object)
+ code: `EUR` (Currency, required)
Expand Down
1 change: 1 addition & 0 deletions src/changes-backwards-compatible.apib
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ We list all backwards-compatible additions here. These are currently available i

#### June 2024
- We added `tax` to the `products.info` endpoint.
- We added `department_id` to the `invoices.update` endpoint.

#### May 2024
- We added `purchase_order_number` to `projects-v2/projects.info`, `projects-v2/projects.create` and `projects-v2/projects.update`.
Expand Down
Loading