Remove a product dimension

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://rest-api.developer.24sevenoffice.com/doc/v1/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "v1 MCP server": {
    "url": "https://rest-api.developer.24sevenoffice.com/doc/v1/mcp"
  }
}

Close
DELETE /products/{id}/dimensions/{dimensionId}

Delete a specific dimension-association from a product in the system.

Headers

  • Authorization string Required

    Authorization header

Path parameters

  • id integer Required

    A unique identifier for the product within Finago Office ERP-modules.

    Minimum value is 1.

  • dimensionId integer Required

    A unique identifier for the dimension within Finago Office ERP modules.

    Minimum value is 1.

Responses

  • 204

    No content - the dimension was successfully deleted from the product.

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string
    • Access-Control-Allow-Credentials string
    • X-Trace-Id string
DELETE /products/{id}/dimensions/{dimensionId}
curl \
 --request DELETE 'https://rest.api.24sevenoffice.com/v1/products/12/dimensions/1' \
 --header "Authorization: string"