
{
    "swagger": "2.0",
    "info": {
        "version": "1.0.0",
        "title": "IntegrationResource"
    },
    "host": "api.onvio.com.br",
    "basePath": "/dominio/status/v2",
    "tags": [
        {
            "name": "IntegrationResource"
        }
    ],
    "paths": {
        "/integration/info": {
            "get": {
                "tags": [
                    "IntegrationResource"
                ],
                "summary": "Return integration info",
                "description": "",
                "operationId": "getStatusInfo",
                "consumes": [
                    "application/json"
                ],
                "produces": [
                    "application/json"
                ],
                "parameters": [
                    {
                        "name": "Authorization",
                        "in": "header",
                        "description": "Auth0 access token",
                        "required": true,
                        "type": "string",
                        "default": "Bearer <access token>"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "Ok."
                    },
                    "400": {
                        "description": "Bad request"
                    },
                    "500": {
                        "description": "Internal server error"
                    }
                }
            }
        }
    },
    "definitions": {
        "OauthStatusV2Dto": {
            "type": "object",
            "properties": {
                "message": {
                    "type": "string",
                    "description": "Message"
                }
            }
        }
    }
}