From 903082506e431ef89184c169fcd6f9e87c122222 Mon Sep 17 00:00:00 2001 From: Azeez Muibi Date: Wed, 19 Mar 2025 14:47:02 +0100 Subject: [PATCH] Updated security schemes --- digifi_swagger.json | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/digifi_swagger.json b/digifi_swagger.json index f30ca4c..eba381e 100644 --- a/digifi_swagger.json +++ b/digifi_swagger.json @@ -667,22 +667,10 @@ } }, "securitySchemes": { - "petstore_auth": { - "type": "oauth2", - "flows": { - "implicit": { - "authorizationUrl": "https://petstore3.swagger.io/oauth/authorize", - "scopes": { - "write:pets": "modify pets in your account", - "read:pets": "read your pets" - } - } - } - }, - "api_key": { - "type": "apiKey", - "name": "api_key", - "in": "header" + "basicAuth": { + "type": "http", + "scheme": "basic", + "description": "Basic Authentication method is implemented. Each request should contain Authorization header with Base64 encoded username:password" } } }