Skip to main content
GET
/
api
/
billing
/
coworkerledgerentries
/
{id}
{
  "BusinessId": 123,
  "BusinessName": "<string>",
  "BusinessCurrencyCode": "<string>",
  "CoworkerId": 123,
  "CoworkerFullName": "<string>",
  "CoworkerInvoiceId": 123,
  "CoworkerInvoiceInvoiceNumber": "<string>",
  "CoworkerInvoiceTotalAmount": "<string>",
  "CoworkerInvoiceBillToName": "<string>",
  "CoworkerInvoicePaid": true,
  "CoworkerInvoicePaidOn": "<string>",
  "CoworkerInvoiceRefunded": true,
  "CoworkerInvoiceRefundedOn": "<string>",
  "CoworkerInvoiceDueDate": "<string>",
  "CoworkerInvoiceDraft": true,
  "CoworkerInvoiceWaitingForInvoiceNumber": true,
  "Description": "<string>",
  "Code": "<string>",
  "Debit": 123,
  "Credit": 123,
  "PaymentGatewayName": 123,
  "PaymentMethodNumber": "<string>",
  "TransactionDate": "<string>",
  "Balance": 123,
  "Billed": true,
  "TransactionDateLocal": "<string>",
  "ConnectedTransactionGuid": "<string>",
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the CoworkerLedgerEntry-Read role.

Path Parameters

id
integer
required
The Id of the CoworkerLedgerEntry record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/billing/coworkerledgerentries/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

BusinessId
integer
Business Id.
BusinessName
string
Business name.
BusinessCurrencyCode
string
Business currency code.
CoworkerId
integer
Coworker Id.
CoworkerFullName
string
Coworker full name.
CoworkerInvoiceId
integer
Coworker Invoice Id.
CoworkerInvoiceInvoiceNumber
string
Invoice number.
CoworkerInvoiceTotalAmount
string
Invoice total amount.
CoworkerInvoiceBillToName
string
Coworker Invoice Bill To Name.
CoworkerInvoicePaid
boolean
Coworker Invoice Paid.
CoworkerInvoicePaidOn
string
Coworker Invoice Paid On.
CoworkerInvoiceRefunded
boolean
Coworker Invoice Refunded.
CoworkerInvoiceRefundedOn
string
Coworker Invoice Refunded On.
CoworkerInvoiceDueDate
string
Coworker Invoice Due Date.
CoworkerInvoiceDraft
boolean
Coworker Invoice Draft.
CoworkerInvoiceWaitingForInvoiceNumber
boolean
Coworker Invoice Waiting For Invoice Number.
Description
string
Description.
Code
string
Ledger entry code.
Debit
number
Debit amount.
Credit
number
Credit amount.
PaymentGatewayName
integer
Payment gateway name.
PaymentMethodNumber
string
Payment method number.
TransactionDate
string
Transaction date.
Balance
number
Balance.
Billed
boolean
Billed.
TransactionDateLocal
string
Transaction Date Local.
ConnectedTransactionGuid
string
Connected transaction GUID.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "BusinessId": 0,
  "BusinessName": null,
  "BusinessCurrencyCode": null,
  "CoworkerId": 0,
  "CoworkerFullName": null,
  "CoworkerInvoiceId": null,
  "CoworkerInvoiceInvoiceNumber": null,
  "CoworkerInvoiceTotalAmount": null,
  "CoworkerInvoiceBillToName": null,
  "CoworkerInvoicePaid": null,
  "CoworkerInvoicePaidOn": null,
  "CoworkerInvoiceRefunded": null,
  "CoworkerInvoiceRefundedOn": null,
  "CoworkerInvoiceDueDate": null,
  "CoworkerInvoiceDraft": null,
  "CoworkerInvoiceWaitingForInvoiceNumber": null,
  "Description": "",
  "Code": "",
  "Debit": 0,
  "Credit": 0,
  "PaymentGatewayName": 0,
  "PaymentMethodNumber": null,
  "TransactionDate": null,
  "Balance": 0,
  "Billed": false,
  "TransactionDateLocal": null,
  "ConnectedTransactionGuid": null,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "CoworkerLedgerEntry Example",
  "LocalizationDetails": null,
  "CustomFields": null
}