Update a specific dimension-association of a product in the system.
Path parameters
-
A unique identifier for the product within Finago Office ERP-modules.
Minimum value is
1. -
A unique identifier for the dimension within Finago Office ERP modules.
Minimum value is
1.
PUT
/products/{id}/dimensions/{dimensionId}
curl \
--request PUT 'https://rest.api.24sevenoffice.com/v1/products/12/dimensions/1' \
--header "Content-Type: application/json" \
--header "Authorization: string" \
--data '{"value":"13"}'
Request examples
# Headers
Authorization: string
# Payload
{
"value": "13"
}
Response examples (200)
# Headers
Access-Control-Allow-Origin: string
Access-Control-Allow-Credentials: string
X-Trace-Id: string
# Payload
[
{
"dimensionType": 1,
"dimensionTypeName": "Project",
"value": "13",
"name": "Project with ID 13"
}
]