PATCH api/v1/table/{tableName}/{id}
Will update {tableName} entity. Returns HTTP 423 if the request must be made through a converter.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
tableName |
Dynamic table name |
string |
Required |
id |
Id of {tableName} entity. |
integer |
Required |
Body Parameters
Dynamic table entity. May include dynamic fields
PatchDynamicTableEntityDtoName | Description | Type | Additional information |
---|---|---|---|
ExternalId |
Unique external id of dynamic table entity |
string |
String length: inclusive between 0 and 100 |
Name |
Name of dynamic table entity |
string |
String length: inclusive between 0 and 250 |
Request Formats
application/json, text/json
Sample:
{ "ExternalId": "sample string 1", "Name": "sample string 2" }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PatchDynamicTableEntityDtoName | Description | Type | Additional information |
---|---|---|---|
ExternalId |
Unique external id of dynamic table entity |
string |
String length: inclusive between 0 and 100 |
Name |
Name of dynamic table entity |
string |
String length: inclusive between 0 and 250 |
Response Formats
application/json, text/json
Sample:
{ "ExternalId": "sample string 1", "Name": "sample string 2" }