---
updatedAt: 2026-07-06T22:28:57.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 org rule model

Get an organization's rule model

# OpenAPI definition

```json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Core platform - Rule models",
    "description": "Manage rule models",
    "contact": {
      "name": "API Support",
      "url": "https://developers.pismo.io/support/"
    },
    "license": {
      "name": "Copyright Pismo"
    },
    "version": "1.37.0"
  },
  "servers": [
    {
      "url": "https://sandbox.pismolabs.io/processing-code",
      "description": "Sandbox API server for testing"
    }
  ],
  "tags": [
    {
      "name": "Apply",
      "description": "Endpoints to apply a rule model."
    }
  ],
  "components": {
    "schemas": {
      "BadRequestError": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "example": "PC0001",
            "description": "Error code"
          },
          "message": {
            "type": "string",
            "example": "Invalid request payload",
            "description": "Error message"
          }
        }
      },
      "Config": {
        "properties": {
          "model_id": {
            "type": "string",
            "description": "Model ID configured for this organization, program, or account.",
            "example": "b3f53d8f-6812-4869-b17a-874d78750cc6"
          }
        }
      },
      "InternalServerError": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "example": "PC0002",
            "description": "Error code"
          },
          "message": {
            "type": "string",
            "example": "An unexpected error happened.",
            "description": "Error message"
          }
        }
      }
    },
    "responses": {
      "400BadRequest": {
        "description": "Bad request",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/BadRequestError"
            }
          }
        }
      },
      "500InternalServerError": {
        "description": "Internal server error",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/InternalServerError"
            }
          }
        }
      }
    }
  },
  "paths": {
    "/v1/config": {
      "get": {
        "tags": [
          "Apply"
        ],
        "summary": "Get org rule model",
        "description": "Get an organization's rule model",
        "operationId": "get-org-model-config",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Config"
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/400BadRequest"
          },
          "500": {
            "$ref": "#/components/responses/500InternalServerError"
          }
        }
      }
    }
  }
}
```