Skip to content

Commit d9314e8

Browse files
committed
Merge branch 'master' into revert_json_examples
2 parents 8611210 + 6376e21 commit d9314e8

File tree

9 files changed

+56
-9
lines changed

9 files changed

+56
-9
lines changed

xero-identity.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: "2.3.6"
3+
version: "2.3.7"
44
title: Xero oAuth 2 identity service
55
description: This specifing endpoints related to managing authentication tokens and identity for Xero API
66
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"

xero-payroll-au.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: '2.3.6'
3+
version: '2.3.7'
44
title: 'Xero Payroll AU'
55
description: 'This is the Xero Payroll API for orgs in Australia region.'
66
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"

xero-payroll-nz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: '2.3.6'
3+
version: '2.3.7'
44
title: 'Xero Payroll NZ'
55
description: 'This is the Xero Payroll API for orgs in the NZ region.'
66
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"

xero-payroll-uk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: '2.3.6'
3+
version: '2.3.7'
44
title: 'Xero Payroll UK'
55
description: 'This is the Xero Payroll API for orgs in the UK region.'
66
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"

xero-projects.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: "2.3.6"
3+
version: "2.3.7"
44
title: Xero Projects API
55
description: This is the Xero Projects API
66
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"

xero_accounting.yaml

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.0
22
info:
33
title: Accounting API
4-
version: "2.3.6"
4+
version: "2.3.7"
55
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"
66
contact:
77
name: "Xero Platform Team"
@@ -9352,6 +9352,53 @@ paths:
93529352
schema:
93539353
type: string
93549354
format: byte
9355+
'/ManualJournals/{ManualJournalID}/History':
9356+
parameters:
9357+
- $ref: '#/components/parameters/requiredHeader'
9358+
x-related-model: ManualJournal
9359+
get:
9360+
security:
9361+
- OAuth2: [accounting.transactions.read]
9362+
tags:
9363+
- Accounting
9364+
operationId: getManualJournalsHistory
9365+
summary: Allows you to retrieve history from a manual journal
9366+
parameters:
9367+
- required: true
9368+
in: path
9369+
name: ManualJournalID
9370+
description: Xero generated unique identifier for a manual journal
9371+
example: "00000000-0000-0000-000-000000000000"
9372+
schema:
9373+
type: string
9374+
format: uuid
9375+
responses:
9376+
'200':
9377+
$ref: '#/components/responses/HistoryRetrieved'
9378+
put:
9379+
security:
9380+
- OAuth2: [accounting.transactions]
9381+
tags:
9382+
- Accounting
9383+
operationId: createManualJournalHistoryRecord
9384+
x-hasAccountingValidationError: true
9385+
summary: Allows you to create history record for a manual journal
9386+
parameters:
9387+
- required: true
9388+
in: path
9389+
name: ManualJournalID
9390+
description: Xero generated unique identifier for a manual journal
9391+
example: "00000000-0000-0000-000-000000000000"
9392+
schema:
9393+
type: string
9394+
format: uuid
9395+
responses:
9396+
'200':
9397+
$ref: '#/components/responses/HistoryRecordCreated'
9398+
'400':
9399+
$ref: '#/components/responses/400Error'
9400+
requestBody:
9401+
$ref: '#/components/requestBodies/historyRecords'
93559402
/Organisation:
93569403
parameters:
93579404
- $ref: '#/components/parameters/requiredHeader'

xero_assets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: "2.3.6"
3+
version: "2.3.7"
44
title: Xero Assets API
55
description: This is the Xero Assets API
66
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"

xero_bankfeeds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
openapi: 3.0.0
22
info:
3-
version: "2.3.6"
3+
version: "2.3.7"
44
title: Bank Feeds API
55
description: This specifing endpoints Xero Bank feeds API
66
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"

xero_files.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ servers:
44
url: https://api.xero.com/files.xro/1.0/
55
info:
66
title: Xero Files API
7-
version: "2.3.6"
7+
version: "2.3.7"
88
termsOfService: "https://developer.xero.com/xero-developer-platform-terms-conditions/"
99
contact:
1010
name: "Xero Platform Team"

0 commit comments

Comments
 (0)