Add data values to model
POST
/organizations/{orgaId}/models/{modelId}/data-values
Add data values to model. This method is used in the context of a repeater where a user can add new data rows resulting in data values.
Authorizations
api_token
API key authentication
TypeAPI Key (header: api_token)
Parameters
Path Parameters
orgaId*
The id of the organization you are a member of.
Typestring
Requiredformat
uuid
modelId*
The id of the model. A item always belongs to a model.
Typestring
Requiredformat
uuid
Request Body
application/json
JSON
[
{
"value": "string",
"dataSectionId": "string",
"dataFieldId": "string",
"row": 0
}
]
Responses
application/json
JSON
{
"id": "string",
"name": "string",
"description": "string",
"productDataModelId": "string",
"uniqueProductIdentifiers": [
{
"uuid": "string",
"value": "string"
}
],
"dataValues": [
{
"value": "string",
"dataSectionId": "string",
"dataFieldId": "string",
"row": 0
}
],
"owner": "string"
}