From 0a045aa86c7c5e61729bfddc4b620c6ec1866c9c Mon Sep 17 00:00:00 2001 From: dinesh1patel <74076102+dinesh1patel@users.noreply.github.com> Date: Wed, 26 Feb 2025 09:10:42 +0000 Subject: [PATCH] Update std-api.yaml --- api-docs/std-api.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/api-docs/std-api.yaml b/api-docs/std-api.yaml index 0a55ac9a5b..08b2fdc2c1 100644 --- a/api-docs/std-api.yaml +++ b/api-docs/std-api.yaml @@ -80,6 +80,35 @@ paths: schema: $ref: "#/definitions/Error" + /caseworkers/{uid}/jurisdiction/{jid}/case-types/{ctid}/cases: + get: + summary: Get case data for a given case type + parameters: + - name: uid + in: path + description: User ID from IdAM + required: true + type: string + - name: jid + in: path + description: Juristiction ID + required: true + type: string + - name: ctid + in: path + description: Case Type ID + required: true + type: string + responses: + 200: + description: List of case data for the given search criteria + schema: + $ref: "#/definitions/CaseDetails" + default: + description: Unexpected error + schema: + $ref: "#/definitions/Error" + /caseworkers/{uid}/jurisdiction/{jid}/case-types/{ctid}/cases/{cid}: get: summary: Get a specific case