Erply Product Parameter Validation Rule API

The Product Parameter Validation Rule API from Erply — 4 operation(s) for product parameter validation rule.

Operations 4

POST /v1/product/parameter/validation/rule Create Product Parameter Validation Rule
DELETE /v1/product/parameter/validation/rule/{ids} Delete Product Parameter Validation Rules by IDs
PUT /v1/product/parameter/validation/rule/{id} Update Product Parameter Validation Rule
GET /v1/product/parameter/{id}/validation/rule Get Product Parameter Validation Rules

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/erply-product-parameter-validation-rule-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

erply-product-parameter-validation-rule-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: "\n\n## Overview\n\n\n\nThis application offers an API for managing assignments and tasks.\n\n\n\nGraphQL endpoint for the same API is [also available](/graph)\n\n\n\n<details><summary>Authentication</summary>\n\n\n\n> \n\n> Authenticate using your Erply credentials and get a sessionKey. This sessionKey and your Erply clientCode must be provided in the HTTP headers of every request. You do not have to authenticate against this API - valid Erply sessionKey-s from other sources are also acceptable. To authenticate using this API, use the `POST /api/v1/auth` endpoint.\n\n>\n\n</details>\n\n"
  title: assignments Assortment Product Parameter Validation Rule API
  contact: {}
  version: 2.36.5
tags:
- name: Product Parameter Validation Rule
paths:
  /v1/product/parameter/validation/rule:
    post:
      security:
      - sk: []
      - cc: []
      - jwt: []
      description: 'The validation rule types are: REQUIRED,  MIN_LENGTH, MAX_LENGTH, MIN_VALUE, MAX_VALUE, INPUT_CASE, PRECISION

        Rule "value" or whatever to call this: the numeric qualifier that goes hand in hand with that particular rule type. Eg. I specify that my parameter must have at least a minimum number of characters and that minimum number is 5.

        For type REQUIRED, leave empty.

        For type MIN_LENGTH, input the required minimum length as an integer.

        For type MAX_LENGTH, input the required maximum length as an integer.

        For type MIN_VALUE, input the minimum allowed value as a signed integer or decimal (eg. “0”, “-1”, “25.6”, “-9.999999” etc.)

        For type MAX_VALUE, input the maximum allowed value as a signed integer or decimal.

        For type INPUT_CASE, input 0 for "LOWERCASE" or 1 for “UPPERCASE”.

        For type PRECISION, input the number of allowed decimal places as an integer (eg. “0”, “1”, or “2”)'
      tags:
      - Product Parameter Validation Rule
      summary: Create Product Parameter Validation Rule
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Response'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.MessageResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.MessageResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/parametermodels.ValidationRuleRequest'
        description: Parameter Validation Rule
        required: true
  /v1/product/parameter/validation/rule/{ids}:
    delete:
      security:
      - sk: []
      - cc: []
      - jwt: []
      tags:
      - Product Parameter Validation Rule
      summary: Delete Product Parameter Validation Rules by IDs
      parameters:
      - description: up to 100 semicolon delimited validation rule IDs
        name: ids
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Response'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.MessageResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.MessageResponse'
  /v1/product/parameter/validation/rule/{id}:
    put:
      security:
      - sk: []
      - cc: []
      - jwt: []
      description: Update Product Parameter Validation Rule
      tags:
      - Product Parameter Validation Rule
      summary: Update Product Parameter Validation Rule
      parameters:
      - description: ValidationRule ID
        name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.Response'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.MessageResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.MessageResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/parametermodels.ValidationRuleUpdateRequest'
        description: Validation Rule value
        required: true
  /v1/product/parameter/{id}/validation/rule:
    get:
      security:
      - sk: []
      - cc: []
      - jwt: []
      description: Get Product Parameter Validation Rule
      tags:
      - Product Parameter Validation Rule
      summary: Get Product Parameter Validation Rules
      parameters:
      - description: parameter ID
        name: id
        in: path
        required: true
        schema:
          type: integer
      - description: skip n records
        name: skip
        in: query
        schema:
          type: integer
      - description: amount to take
        name: take
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/parametermodels.ValidationRuleResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.MessageResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/responses.MessageResponse'
components:
  schemas:
    responses.Response:
      type: object
      properties:
        id:
          type: integer
          example: 73
    parametermodels.ValidationRuleUpdateRequest:
      type: object
      properties:
        rule:
          description: 'Rule "value" or whatever to call this: the numeric qualifier that goes hand in hand with that particular rule type. Eg. I specify that my parameter must have at least a minimum number of characters and that minimum number is 5.

            For type REQUIRED, leave empty.

            For type MIN_LENGTH, input the required minimum length as an integer.

            For type MAX_LENGTH, input the required maximum length as an integer.

            For type MIN_VALUE, input the minimum allowed value as a signed integer or decimal (eg. “0”, “-1”, “25.6”, “-9.999999” etc.)

            For type MAX_VALUE, input the maximum allowed value as a signed integer or decimal.

            For type INPUT_CASE, input 0 for "LOWERCASE" or 1 for “UPPERCASE”.

            For type PRECISION, input the number of allowed decimal places as an integer (eg. “0”, “1”, or “2”)'
          type: number
          example: 25.6
    responses.MessageResponse:
      type: object
      properties:
        message:
          type: string
          example: some message
    parametermodels.ValidationRuleResponse:
      type: object
      properties:
        added:
          description: Unix timestamp
          type: integer
          example: 1595230999
        addedby_id:
          description: user ID
          type: integer
          example: 1
        changed:
          description: Unix timestamp
          type: integer
          example: 1595230999
        changedby_id:
          description: user ID
          type: integer
          example: 1
        id:
          type: integer
        parameter_id:
          type: integer
        rule: {}
        type:
          type: string
    parametermodels.ValidationRuleRequest:
      type: object
      properties:
        parameter_id:
          type: integer
          example: 1
        rule:
          description: 'Rule "value" or whatever to call this: the numeric qualifier that goes hand in hand with that particular rule type. Eg. I specify that my parameter must have at least a minimum number of characters and that minimum number is 5.

            For type REQUIRED, leave empty.

            For type MIN_LENGTH, input the required minimum length as an integer.

            For type MAX_LENGTH, input the required maximum length as an integer.

            For type MIN_VALUE, input the minimum allowed value as a signed integer or decimal (eg. “0”, “-1”, “25.6”, “-9.999999” etc.)

            For type MAX_VALUE, input the maximum allowed value as a signed integer or decimal.

            For type INPUT_CASE, input 0 for "LOWERCASE" or 1 for “UPPERCASE”.

            For type PRECISION, input the number of allowed decimal places as an integer (eg. “0”, “1”, or “2”)'
          type: number
          example: 25
        type:
          description: Type of the validation rule. Can be REQUIRED, MIN_LENGTH, MAX_LENGTH, MIN_VALUE, MAX_VALUE, INPUT_CASE and PRECISION
          type: string
          example: MIN_LENGTH
  securitySchemes:
    AccessToken:
      type: apiKey
      name: accessToken
      in: header
    ErplyClientCode:
      type: apiKey
      name: clientCode
      in: header
    ErplyJWT:
      type: apiKey
      name: jwt
      in: header
    ErplySession:
      type: apiKey
      name: sessionKey
      in: header
    RequestKey:
      type: apiKey
      name: requestKey
      in: header