Description
Today, the body of the PUT /api/v2/routing/message/recipients/{recipientId}
request includes hundreds of fields. Only one of these fields (flow.id) is actually used and applicable for a user to update; the other fields are completely ignored. As such, we are removing all the fields from the PUT body, except the one field that is updatable.
The new PUT body will be the following:
{
"flow": {
"id": ""
}
}
Change Category
API
Change Context
The existing PUT body has hundreds of fields that are unusable today. This is confusing to public consumers. This change is to remove the non applicable fields from the PUT body.
Change Impact
Since the fields being removed are not applicable, and do nothing today, there is no impact to customers.
Date of Change
Aug 28, 2023
Impacted APIs
PUT/api/v2/routing/message/recipients/{recipientId}
References
[MSG-5570]