Trio Agency API Docs
Trio Agency APIsTrio Client APIs
Trio Agency APIsTrio Client APIs
  1. Job
  • Trio
    • Home
    • Webhooks
    • Guides
      • Jobs Sync
      • Candidate Submission
    • APIs
      • Candidate
        • Get a list of all active candidates related to your account.
        • Create or update a candidate.
        • Gets information for the specified candidate.
      • Candidates
        • Gets a list of candidates
        • Creates a candidate.
        • Gets a specific candidate
        • Updates a candidate.
      • Client
        • Get a list of all active clients related to your account.
        • Gets information for the specified client.
      • Clients
        • Get client locations.
        • Get a specific client location.
      • Job
        • Gets a listing of all open jobs.
          GET
        • Gets a listing of closed jobs based on the date range.
          GET
        • Get information for the specified job.
          GET
      • Profession
        • Gets all professions with a list of their specialties.
      • ProviderConfirmation
        • Get a list of provider confirmations related to your account.
        • Get information for the specified provider confirmation.
      • Shifts
        • Gets a list of shifts for the user performing the request
        • Gets a list of available shift statuses
        • Gets a specific shift
        • Attempts to claim the shift for the current user or specified candidate
        • Confirms the assignment of a shift
        • Declines the assignment of a shift
        • Releases a confirmed shift
      • ShiftSubmissions
        • Attempts to submit a shift submission
        • Attempts to accept a shift submission
        • Attempts to reject a shift submission
        • Attempts to withdraw a shift submission
      • Specialty
        • Gets all specialties.
        • Gets information for the specified specialty.
      • StaffingPools
        • Get a collection of candidates with active or inactive clearances to staffing pools
        • Get locations for staffing pools
      • Submission
        • Get a list of all submissions related to your account.
        • Create a new submission.
        • Accepts a submission that was offered.
        • Declines an offered submission.
        • Withdraw a submission.
        • Get a list of reasons for withdrawing a submission.
        • Get information for the specified submission.
        • Update the specified submission.
      • 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.
      • Webhooks
        • Get a list of all webhooks registered for your agency.
        • Subscribes a new webhook to a Trio event.
        • Deletes the webhook registration from Trio.
        • Get the list of available events that can be subscribed to via webhook.
        • Get a webhook by its id.
Trio Agency APIsTrio Client APIs
Trio Agency APIsTrio Client APIs
  1. Job

Get information for the specified job.

GET
/Job/{id}

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
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.triowfs.com/trio/Job/' \
--header 'X-API-KEY: <api-key>'
Response Response Example
200 - Example 1
{
    "Id": "38a5a5bb-dc30-49a2-b175-1de0d1488c43",
    "Number": 0,
    "Title": "string",
    "JobStatus": "string",
    "JobStatusReason": "string",
    "StartDate": "2019-08-24T14:15:22Z",
    "NumberOfPostions": 0,
    "NumberOfCurrentOpenPositions": 0,
    "ClientNumber": 0,
    "ClientName": "string",
    "UnitName": "string",
    "FacilityName": "string",
    "FacilityDescription": "string",
    "UnitDescription": "string",
    "JobType": "string",
    "PrimaryAddress": "string",
    "AltAddress": "string",
    "City": "string",
    "State": "string",
    "StateAbbrevation": "string",
    "ZipCode": "string",
    "PrimaryPhone": "string",
    "AltPhone": "string",
    "Profession": "string",
    "InternalRate": "string",
    "Description": "string",
    "DurationDescription": "string",
    "RateDescription": "string",
    "OnCallDescription": "string",
    "WeekendDescription": "string",
    "LicenseDescription": "string",
    "RequirementDescription": "string",
    "AllowsCompactLicense": true,
    "RelationshipManager": "string",
    "RelationshipManagerPhone": "string",
    "RelationshipManagerEmail": "string",
    "PlacementCoordinator": "string",
    "PlacementCoordinatorPhone": "string",
    "PlacementCoordinatorEmail": "string",
    "IsLocums": true,
    "RequestType": 0,
    "OrientationDates": "string",
    "Specialties": [
        "string"
    ],
    "Segments": [
        "string"
    ],
    "Certifications": [
        {
            "Code": 0,
            "Name": "string",
            "Description": "string",
            "ModifiedDateUtc": "2019-08-24T14:15:22Z"
        }
    ],
    "StateLicenses": [
        {
            "Id": "38a5a5bb-dc30-49a2-b175-1de0d1488c43",
            "Name": "string",
            "Abbrevation": "string",
            "Region": {
                "Name": "string",
                "Description": "string",
                "Code": 0,
                "States": [
                    "string"
                ],
                "ModifiedDateUtc": "2019-08-24T14:15:22Z"
            },
            "IsCompact": true,
            "ModifiedDateUtc": "2019-08-24T14:15:22Z"
        }
    ],
    "Shift": {
        "ShiftDescription": "string",
        "ShiftIdentifier": "string",
        "ShiftStart": "string",
        "ShiftEnd": "string",
        "ShiftHours": 0,
        "ModifiedDateUtc": "2019-08-24T14:15:22Z"
    },
    "ModifiedDateUtc": "2019-08-24T14:15:22Z"
}
Modified at 2025-09-24 17:33:05
Previous
Gets a listing of closed jobs based on the date range.
Next
Gets all professions with a list of their specialties.
Built with