Trio Client API Docs
Trio
Trio
  1. Invoice
  • Home
  • APIs
    • Invoice
      • Get a list of invoices.
        GET
      • Get an invoice by number
        GET
      • Get a list of timecards for the specified invoice.
        GET
    • Job
      • Gets a listing of all open jobs.
      • Gets a listing of closed jobs based on the date range.
      • Get information for the specified job.
    • Positions
      • Gets a list of assignments with demographics
    • Profession
      • Gets all professions with a list of their specialties.
    • ProviderConfirmation
      • Get information for the specified provider confirmation.
    • Specialty
      • Gets all specialties.
      • Gets information for the specified specialty.
    • Submission
      • Get a list of all submissions related to your account.
    • Timecard
      • Get a list of all Timecards related to your account.
      • Get a list of all valid Pay Types the can be used when creating/updating Timecard Lines.
      • Get a specific timecard.
      • Get a list of all documents associated with a timecard.
      • Get the timesheet document associated with a timecard.
      • Get a specific document associated with a timecard.
    • Timecard Copy
      • Get a list of all Timecards related to your account.
      • Get a list of all valid Pay Types the can be used when creating/updating Timecard Lines.
      • Get a specific timecard.
      • Get a list of all documents associated with a timecard.
      • Get the timesheet document associated with a timecard.
      • Get a specific document associated with a timecard.
    • TimecardExpense
      • Get a list of all Timecard Expenses for a Timecard.
    • TimecardLine
      • Get a list of all Timecard Lines for a Timecard.
Trio
Trio
  1. Invoice

Get a list of timecards for the specified invoice.

GET
/Invoice/{number}/Timecards
StaffRole.ClaimManageBilling claim is required.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
API Key
Add parameter in header
X-API-KEY
Example:
X-API-KEY: ********************
or
Path Params

Responses

🟢200OK
application/json
The request has succeeded.
Body

🟠400Bad Request
🟠404Record Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.triowfs.com/trio/Invoice//Timecards' \
--header 'X-API-KEY: <api-key>'
Response Response Example
200 - Example 1
[
    {
        "Number": 0,
        "AgencyInvoiceNumber": "string",
        "InvoiceNumber": 0,
        "ClientNumber": 0,
        "CustomerNumber": "string",
        "CandidateNumber": 0,
        "CandidateName": "string",
        "CandidateIdentification": "string",
        "Client": "string",
        "Status": "string",
        "StatusNote": "string",
        "WeekBeginningDate": "2019-08-24T14:15:22Z",
        "WeekEndingDate": "2019-08-24T14:15:22Z",
        "SubmittedBy": "string",
        "SubmittedDateUtc": "2019-08-24T14:15:22Z",
        "ProfessionId": "6758a7a0-8526-4030-94c2-e425266d45e5",
        "Profession": "string",
        "SpecialtyId": "5cea92e1-0db2-4f45-949b-bbc3248502ea",
        "Specialty": "string",
        "Account": "string",
        "RebateRatePercentage": 0,
        "FeeRatePercentage": 0,
        "BillRecordNumber": "string",
        "Description": "string",
        "Agency": "string",
        "AgencyNumber": 0,
        "IsLocums": true,
        "TotalHours": 0,
        "TimeAmount": 0,
        "ExpenseAmount": 0,
        "RebateFeeAmount": 0,
        "AdminFeeAmount": 0,
        "TotalAmount": 0,
        "InvoiceRefNumber": "string",
        "Context": "string",
        "ConfirmationNumber": 0,
        "AssignmentNumber": 0,
        "AssignmentStartDate": "2019-08-24T14:15:22Z",
        "AssignmentEndDate": "2019-08-24T14:15:22Z",
        "ClearanceNumber": 0,
        "TimeCardLines": [
            {
                "TimecardNumber": 0,
                "ClientNumber": 0,
                "Client": "string",
                "CandidateNumber": 0,
                "Candidate": "string",
                "CandidateIdentification": "string",
                "PayType": "string",
                "PayTypeCode": "string",
                "Note": "string",
                "Date": "2019-08-24T14:15:22Z",
                "Quantity": 0,
                "RateAmount": 0,
                "TotalAmount": 0,
                "ModifiedDateUtc": "2019-08-24T14:15:22Z"
            }
        ],
        "TimeCardExpenses": [
            {
                "TimecardNumber": 0,
                "ClientNumber": 0,
                "Client": "string",
                "CandidateNumber": 0,
                "Candidate": "string",
                "CandidateIdentification": "string",
                "Date": "2019-08-24T14:15:22Z",
                "ExpenseTypeName": "string",
                "ExpenseTypeNumber": 0,
                "ExpenseAccountNumber": "string",
                "Note": "string",
                "Quantity": 0,
                "RateAmount": 0,
                "TotalAmount": 0,
                "ModifiedDateUtc": "2019-08-24T14:15:22Z"
            }
        ],
        "ModifiedDateUtc": "2019-08-24T14:15:22Z"
    }
]
Modified at 2025-09-24 17:33:05
Previous
Get an invoice by number
Next
Gets a listing of all open jobs.
Built with