Update Material properties
curl --request PUT \
--url https://api.realtimelca.com/rest/api/Mapping/buildingproject/{id}/materialsproperties \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
[
{
"materialId": "cb14b0e7-863b-4357-a46c-ce8cc4d09420",
"lifeTime": "{{$randomInt}}",
"lifetimeOffset": "{{$randomInt}}",
"declaredUnitRequest": {
"declaredUnit": 4,
"preferred": true,
"value": "{{$randomInt}}"
},
"description": "{{$randomCatchPhrase}}",
"includeMapping": true,
"materialIdentifier": "{{$randomFirstName}}",
"typeIdentifier": "{{$randomLastName}}",
"category": "{{$randomAdjective}}"
}
]
'Project
Update Material properties
Updates the material properties for a specific building project. This endpoint accepts an array of material property objects, allowing bulk updates to multiple materials in a single request.
PUT
/
Mapping
/
buildingproject
/
{id}
/
materialsproperties
Update Material properties
curl --request PUT \
--url https://api.realtimelca.com/rest/api/Mapping/buildingproject/{id}/materialsproperties \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
[
{
"materialId": "cb14b0e7-863b-4357-a46c-ce8cc4d09420",
"lifeTime": "{{$randomInt}}",
"lifetimeOffset": "{{$randomInt}}",
"declaredUnitRequest": {
"declaredUnit": 4,
"preferred": true,
"value": "{{$randomInt}}"
},
"description": "{{$randomCatchPhrase}}",
"includeMapping": true,
"materialIdentifier": "{{$randomFirstName}}",
"typeIdentifier": "{{$randomLastName}}",
"category": "{{$randomAdjective}}"
}
]
'Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Response
default
Response schema not yet documented in the upstream Postman spec.
⌘I

