Adding project model attribute
Developing
POST
/project/{projectId}/model/{projectModelId}/attributes
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/project//model//attributes' \
--header 'Content-Type: application/json' \
--data-raw '{
"attributes": [
{
"name": "Budget",
"type": "number",
"value": "100000"
},
{
"name": "Start Date",
"type": "date",
"value": "2025-06-01"
},
{
"name": "Manager",
"type": "string",
"value": "Alice Johnson"
}
]
}'
Response Response Example
{}
Request
Path Params
projectId
string
required
projectModelId
string
required
Body Params application/json
Responses
Modified at 2025-06-06 16:19:31