action unicourt_get_court_locations_for_court { label: "Associated Court Location for given courtId." description: "Contains the Court Location Object for given courtId.\n" provider: unicourt method: GET path: "/masterData/court/{courtId}/courtLocations" encoding: json input: { type: "object" properties: { order: { type: "string" enum: ["asc", "desc"] } pageNumber: { type: "integer" } sort: { type: "string" enum: ["name"] } } additionalProperties: false } output: { type: "object" required: ["courtLocationArray", "nextPageAPI", "object", "pageNumber", "previousPageAPI", "totalCount", "totalPages"] properties: { courtLocationArray: { type: "array" items: { type: "object" required: ["object", "courtLocationId", "name", "streetAddress1", "streetAddress2", "city", "stateName", "createdDate", "courtsForCourtLocationAPI", "courtServiceStatusAPI"] properties: { city: { type: "string" description: "City" } courtLocationId: { type: "string" } courtServiceStatusAPI: { type: "string" format: "uri" } courtsForCourtLocationAPI: { type: "string" format: "uri" } createdDate: { type: "string" format: "date-time" description: "The date and time when it was first created. This date and time is in UTC. Formatted as YYYY-MM-DD HH:MM:SS." } name: { type: "string" } object: { type: "string" } stateName: { type: "string" description: "State Name if present else default value." } streetAddress1: { type: "string" description: "1st part of the street address." } streetAddress2: { type: "string" description: "2nd part of the street address." } } } } nextPageAPI: { type: "string" format: "uri" description: "Link to next page." } object: { type: "string" } pageNumber: { type: "integer" description: "Page number for which results where obtained." } previousPageAPI: { type: "string" format: "uri" description: "Link to previous page." } totalCount: { type: "integer" description: "Total number of matches found." } totalPages: { type: "integer" description: "Total number of pages to obtain all the objects." } } } }