# Delete authorization configuration by organization Delete an authorization configuration for an authorization at the organization (org) level. This level can be used as a default configuration for all programs and accounts in this org. # OpenAPI definition ```json { "openapi": "3.1.0", "info": { "title": "Card issuing - Authorization configurations", "version": "1.0.0", "description": "Endpoints to allow the management of the authorization configurations.", "contact": { "name": "API Support", "url": "https://developers.pismo.io/support" }, "license": { "name": "Copyright Pismo" } }, "servers": [ { "url": "https://sandbox.pismolabs.io/network-transactions-config", "description": "Sandbox API server for testing" } ], "components": { "parameters": { "XTenantHeader": { "name": "x-tenant", "in": "header", "schema": { "type": "string" }, "example": "TN-12345678-9f53-46ce-953b-b81dd1234567", "description": "Organization ID" } }, "responses": { "400BadRequest": { "description": "Bad request" }, "401Unauthorized": { "description": "Access token is missing or invalid" }, "403Forbidden": { "description": "The request has been lost" }, "404NotFound": { "description": "The specified resource was not found" }, "500InternalServer": { "description": "Internal server error" } }, "securitySchemes": { "BearerAuth": { "type": "http", "scheme": "bearer", "bearerFormat": "JWT" } } }, "security": [ { "BearerAuth": [] } ], "tags": [ { "name": "Authorization configurations", "description": "Authorization configurations-related endpoints" } ], "paths": { "/v1/config": { "delete": { "summary": "Delete authorization configuration by organization", "description": "Delete an authorization configuration for an authorization at the organization (org) level. This level can be used as a default configuration for all programs and accounts in this org.", "operationId": "DeleteAuthorizationConfigByTenant", "tags": [ "Authorization configurations" ], "parameters": [ { "$ref": "#/components/parameters/XTenantHeader" } ], "responses": { "204": { "description": "Deleted" }, "400": { "$ref": "#/components/responses/400BadRequest" }, "401": { "$ref": "#/components/responses/401Unauthorized" }, "403": { "$ref": "#/components/responses/403Forbidden" }, "404": { "$ref": "#/components/responses/404NotFound" }, "500": { "$ref": "#/components/responses/500InternalServer" } } } } } } ```