-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapidoc-oas3.json
1 lines (1 loc) · 1.64 KB
/
apidoc-oas3.json
1
{ "openapi": "3.0.1", "info": { "title": "Fire Dispatcher APIs", "version": "0.0.1" }, "servers": [ { "url": "http://int-sc-uat-pci.allianz.com.tr/pmc-fire-dispatcher/risk-score" } ], "security": [ { "ApiKeyAuth": [], "UsernameAuth": [] } ], "paths": { "/api/v1/afad-pga": { "post": { "tags": [ "risk-score-controller" ], "operationId": "afadPga", "parameters": [ { "in": "header", "$ref": "#/components/parameters/hdrACCEPT_LANGUAGE" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "integer", "format": "int64" } } }, "required": true }, "responses": { "200": { "description": "default response", "content": { "*/*": { "schema": { "type": "number" } } } } } } } }, "components": { "parameters": { "hdrACCEPT_LANGUAGE": { "name": "Accept-Language", "in": "header", "required": false, "schema": { "type": "string" }, "example": "tr" } }, "securitySchemes": { "ApiKeyAuth": { "type": "apiKey", "description": "Please enter your api key", "name": "X-ApiKey", "in": "header" }, "UsernameAuth": { "type": "apiKey", "description": "Please enter your AZNET username", "name": "X-Username", "in": "header" } } }}