Retrieve a Scheduled Item from a Proposal

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Overview

Returns the details of single scheduled item. The record is returned as a dictionary of field-name/value pairs. The system validates that the record belongs to the specified proposal.


Examples

Scenario 1: Retrieve a location by ID:

GET /api/Quotes/Proposals/12345/Schedules/ProposalLocation/100
{
  "ProposalLocationID": 100,
  "ProposalID": 12345,
  "LocationName": "Main Office",
  "Address1": "123 Main St",
  "City": "Chicago",
  "StateCode": "IL",
  "ZipCode": "60601"
}

Scenario 2: Record does not belong to the specified proposal:

GET /api/Quotes/Proposals/99999/Schedules/ProposalLocation/100
500 Internal Server Error
"ProposalLocation with id 100 not found for ProposalID 99999."
Path Params
integer
required

The ID of the proposal.

string
required

The schedule domain name (e.g., ProposalLocation).

integer
required

The primary key ID of the schedule record.

Response

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json