action unicourt_get_charge { label: "Charge Object for the given chargeId." description: "Charge Object for the given chargeId.\n" provider: unicourt method: GET path: "/masterData/charge/{chargeId}" encoding: json output: { type: "object" required: ["chargeGroup", "chargeGroupId", "chargeId", "createdDate", "name", "object"] properties: { chargeGroup: { type: "string" } chargeGroupId: { type: "string" } chargeId: { type: "string" } 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" } } } }