Trio Client API Docs
Trio
Trio
  1. Timecard Copy
  • Home
  • APIs
    • Invoice
      • Get a list of invoices.
      • Get an invoice by number
      • Get a list of timecards for the specified invoice.
    • 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
      • Get a list of all valid Pay Types the can be used when creating/updating Timecard Lines.
        GET
      • Get a specific timecard.
        GET
      • Get a list of all documents associated with a timecard.
        GET
      • Get the timesheet document associated with a timecard.
        GET
      • Get a specific document associated with a timecard.
        GET
    • 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. Timecard Copy

Get a list of all valid Pay Types the can be used when creating/updating Timecard Lines.

GET
/Timecard/PayTypes

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

Responses

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

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.triowfs.com/trio/Timecard/PayTypes' \
--header 'X-API-KEY: <api-key>'
Response Response Example
[
    {
        "Id": "38a5a5bb-dc30-49a2-b175-1de0d1488c43",
        "Name": "string",
        "Code": "string",
        "Caption": "string",
        "Description": "string",
        "IsLocums": true,
        "IsDaily": true,
        "IsOnCall": true,
        "IsActive": true,
        "IsPermPlacement": true,
        "ModifiedDateUtc": "2019-08-24T14:15:22Z"
    }
]
Modified at 2025-11-30 17:28:06
Previous
Get a list of all Timecards related to your account.
Next
Get a specific timecard.
Built with