action unicourt_get_attorney_associated_parties { label: "Gets Associated Party details for a requested Attorney ID." description: "Retrieve the parties represented by the attorney with the specified attorneyId value." provider: unicourt method: GET path: "/attorney/{attorneyId}/associatedParties" encoding: json input: { type: "object" properties: { pageNumber: { type: "integer" } } additionalProperties: false } output: { type: "object" required: ["nextPageAPI", "object", "pageNumber", "partyAttorneyAssociationArray", "totalCount", "totalPages"] properties: { nextPageAPI: { type: "string" description: "Link to next page of a particular entity in a Case." } object: { type: "string" description: "Name of the object" } pageNumber: { type: "integer" description: "Page number for which results where obtained." } partyAttorneyAssociationArray: { type: "array" items: { type: "object" required: ["object", "partyAttorneyAssociationId", "attorneyId", "partyId", "isVisible"] properties: { attorneyId: { type: "string" description: "ID for the attorney in this case. This ID is unique within a case and NOT across cases. If the same attorney were to appear in another case this ID would be different." } isVisible: { type: "boolean" description: "Signifies if this party attorney relationship is currently isVisible or not for the case." } object: { type: "string" description: "Name of the object" } partyAttorneyAssociationId: { type: "string" description: "ID of the association" } partyId: { type: "string" description: "ID for the party in this case. This ID is unique within a case and NOT across cases. If the same attorney were to appear in another case this ID would be different." } } } } totalCount: { type: "integer" description: "Total number of parties of the Case entity in a Case." } totalPages: { type: "integer" description: "Total number of pages to obtain all the objects of a party in the Case." } } } }