Discussions

Ask a Question
Back to All

API PUT (update) request causes Front End error for Service Provider


Below is a screenshot of the error I see on the front end after making an update to the service pro via API. In the below example, I updated the employee entity's "DisplayAs" and "ProviderStatusId".

Wondering why I am seeing this and if there is something else I need to do to avoid this?

I have included my PUT request used.

{
"Properties": [
"Id",
"ProviderStatusId",
"DisplayAs"
],
"Entity": {
"DisplayAs": "1515 DESIGN & MANUFACTURING",
"ProviderStatusId": "Connected",
"Id": 91
}
}