Journals
Authorizations
Path parameters
idstring · uuidRequired
The Journal identifier
Header parameters
api-versionstringOptional
Responses
200
Success
application/json
400
Bad Request.
application/json
401
Unauthorized
403
Forbidden
404
Not Found
application/json
get
GET /Journals/{id} HTTP/1.1
Host: api.younium.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"journalNumber": "text",
"accountingPeriod": {
"description": "text",
"fiscalYear": 1,
"fiscalPeriod": 1,
"fiscalQuarter": 1,
"calendarYear": 1,
"calendarMonth": 1,
"startDate": "2025-06-23T09:23:19.301Z",
"endDate": "2025-06-23T09:23:19.301Z",
"status": "Open",
"closedDate": "2025-06-23T09:23:19.301Z"
},
"journalType": "Invoice",
"description": "text",
"posted": true,
"postedDate": "2025-06-23T09:23:19.301Z",
"vouchers": [
{
"transactionNumber": "text",
"effectiveDate": "2025-06-23T09:23:19.301Z",
"source": "Invoicing",
"transactions": [
{
"description": "text",
"account": "text",
"debitAmount": 1,
"creditAmount": 1,
"customFields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"orderChargeNumber": "text",
"orderChargeId": "123e4567-e89b-12d3-a456-426614174000",
"revenueScheduleItemId": "123e4567-e89b-12d3-a456-426614174000",
"invoiceNumber": "text",
"invoiceAccountId": "123e4567-e89b-12d3-a456-426614174000",
"invoiceId": "123e4567-e89b-12d3-a456-426614174000",
"invoiceLineId": "123e4567-e89b-12d3-a456-426614174000",
"paymentId": "123e4567-e89b-12d3-a456-426614174000",
"paymentSettlementId": "123e4567-e89b-12d3-a456-426614174000",
"externalERPId": "text",
"externalCRMId": "text",
"created": "2025-06-23T09:23:19.301Z",
"modified": "2025-06-23T09:23:19.301Z"
}
],
"externalERPId": "text",
"transferredToERP": "2022-12-03",
"created": "2025-06-23T09:23:19.301Z",
"modified": "2025-06-23T09:23:19.301Z"
}
Authorizations
Path parameters
idstring · uuidRequired
Header parameters
api-versionstringOptional
Body
descriptionstring | nullableOptional
externalERPIdstring | nullableOptional
transferredToERPstring · date-time | nullableOptionalExample:
Date of when journal was transferred to external ERP.
2022-12-03
Responses
200
Success
400
Bad Request.
application/json
401
Unauthorized
403
Forbidden
patch
PATCH /Journals/{id} HTTP/1.1
Host: api.younium.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/merge-patch+json
Accept: */*
Content-Length: 77
{
"description": "text",
"externalERPId": "text",
"transferredToERP": "2022-12-03"
}
No content
get
Authorizations
Query parameters
Skipinteger · int32OptionalExample:
Skip number of records
10
Takeinteger · int32OptionalExample:
Take number of records
5
FilterstringOptionalExample:
Filter the resulsts. See ODATA documentation for more information
name eq 'Adam' and age gt 20
SortstringOptionalExample:
Sorting the results. See ODATA specificaion for more information
name
Header parameters
api-versionstringOptional
Responses
200
Success
application/json
400
Bad Request.
application/json
401
Unauthorized
403
Forbidden
get
GET /Journals HTTP/1.1
Host: api.younium.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"journalNumber": "text",
"accountingPeriod": {
"description": "text",
"fiscalYear": 1,
"fiscalPeriod": 1,
"fiscalQuarter": 1,
"calendarYear": 1,
"calendarMonth": 1,
"startDate": "2025-06-23T09:23:19.301Z",
"endDate": "2025-06-23T09:23:19.301Z",
"status": "Open",
"closedDate": "2025-06-23T09:23:19.301Z"
},
"journalType": "Invoice",
"description": "text",
"posted": true,
"postedDate": "2025-06-23T09:23:19.301Z",
"vouchers": [
{
"transactionNumber": "text",
"effectiveDate": "2025-06-23T09:23:19.301Z",
"source": "Invoicing",
"transactions": [
{
"description": "text",
"account": "text",
"debitAmount": 1,
"creditAmount": 1,
"customFields": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"orderChargeNumber": "text",
"orderChargeId": "123e4567-e89b-12d3-a456-426614174000",
"revenueScheduleItemId": "123e4567-e89b-12d3-a456-426614174000",
"invoiceNumber": "text",
"invoiceAccountId": "123e4567-e89b-12d3-a456-426614174000",
"invoiceId": "123e4567-e89b-12d3-a456-426614174000",
"invoiceLineId": "123e4567-e89b-12d3-a456-426614174000",
"paymentId": "123e4567-e89b-12d3-a456-426614174000",
"paymentSettlementId": "123e4567-e89b-12d3-a456-426614174000",
"externalERPId": "text",
"externalCRMId": "text",
"created": "2025-06-23T09:23:19.301Z",
"modified": "2025-06-23T09:23:19.301Z"
}
],
"externalERPId": "text",
"transferredToERP": "2022-12-03",
"created": "2025-06-23T09:23:19.301Z",
"modified": "2025-06-23T09:23:19.301Z"
}
]
Last updated
Was this helpful?