---
updatedAt: 2026-03-25T12:34:32.000Z
---

Fetch the complete documentation index at: https://developers.pismo.io/pismo-docs/llms.txt. Use this file to discover all available pages before exploring further.

# Get limit config by Org

Get the limit configuration for authorizations on the Org level.

# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Core platform - Balance watcher",
    "description": "Balance watcher endpoints.",
    "contact": {
      "name": "API Support",
      "url": "https://developers.pismo.io/support/"
    },
    "license": {
      "name": "Copyright Pismo"
    },
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://sandbox.pismolabs.io/balance-watcher",
      "description": "Sandbox API server for testing"
    }
  ],
  "tags": [
    {
      "name": "Limit configurations",
      "description": "Endpoints to support configuration operations"
    }
  ],
  "components": {
    "schemas": {
      "ConfigResponse": {
        "type": "object",
        "description": "Configuration record response",
        "properties": {
          "over_limit": {
            "$ref": "#/components/schemas/Overlimit"
          },
          "limit_refund": {
            "$ref": "#/components/schemas/LimitRefund"
          }
        }
      },
      "Error": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "description": "Error code.",
            "example": "RCAPI-DOMAIN-VIOLATION"
          },
          "message": {
            "type": "string",
            "description": "Error description.",
            "example": "RCAPI domain violation."
          }
        }
      },
      "Overlimit": {
        "type": "object",
        "description": "Group of configurations related to the over-limit flow",
        "required": [
          "enable"
        ],
        "properties": {
          "enable": {
            "type": "boolean",
            "description": "Flag to enable the over-limit feature.",
            "example": true
          }
        }
      },
      "LimitRefund": {
        "type": "object",
        "description": "Group of configurations related to the limit refund flow",
        "required": [
          "enable"
        ],
        "properties": {
          "enable": {
            "type": "boolean",
            "description": "Flag to enable the limit refund feature.",
            "example": true
          }
        }
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "description": "Account access token. Tokens can expire quickly, which can result in an \"Unauthorized\" error.",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "BearerAuth": []
    }
  ],
  "paths": {
    "/v1/config": {
      "get": {
        "summary": "Get limit config by Org",
        "description": "Get the limit configuration for authorizations on the Org level.",
        "operationId": "get-config-by-tenant",
        "tags": [
          "Limit configurations"
        ],
        "responses": {
          "200": {
            "description": "Retrieved successfully",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ConfigResponse"
                }
              }
            }
          },
          "400": {
            "description": "Bad request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                },
                "example": {
                  "code": "BW0008",
                  "message": "Invalid request."
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                },
                "example": {
                  "code": "BW0031",
                  "message": "Config creation by account unauthorized."
                }
              }
            }
          },
          "404": {
            "description": "Not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                },
                "example": {
                  "code": "BW0001",
                  "message": "No configuration was found."
                }
              }
            }
          },
          "500": {
            "description": "Internal server error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Error"
                },
                "example": {
                  "code": "BW0007",
                  "message": "An unexpected error happened."
                }
              }
            }
          }
        }
      }
    }
  }
}
```