Update Service Agreements
PUT /v1/agreement/service/:id
Assigns or removes agreements from a service. Accepts a list of agreement identifiers and updates the service's agreement associations. Returns the list of added and removed agreement identifiers.
Request Body
{
"agreements": [
"6375ae2036cdbfe31e5ca2d1"
]
}
Response Example
{
"added": ["123456789"],
"removed": ["987654321"]
}