PUT api/CustomTables/{id}?tableName={tableName}
Fully updates an existing Custom Table Record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Id of the record |
globally unique identifier |
Required |
| tableName |
Custom table name |
string |
Required |
Body Parameters
The record data must be passed in through the body of the request in Json format. Set Content-Type header to application/json
MutableEntityExtended| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ParentId |
This field will only include data when working with Group records. |
globally unique identifier |
None. |
| Fields | Dictionary of string [key] and Object [value] |
None. |
|
| LinkedEntities | LinkedEntities |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "5231b506-4921-4267-9c10-99115ce22aec",
"ParentId": "3301ad41-b2b1-41f1-bfad-cf42491b10f9",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"df48da9c-d7cf-4a8d-bf96-1f921d462ec2",
"44a69b11-00a6-4d65-b210-3624ec95cf0e"
],
"Companies": [
"3d67a057-36b0-4c37-ad9d-880236c8eb32",
"843a62e2-2c66-4450-bfee-323bc3cee4b1"
],
"Groups": [
"ec60cc88-8bb9-4aa7-906e-fe13ce04ddcc",
"48eea3a3-3177-40de-814b-6660f9c3193e"
],
"Opportunities": [
"e1b9a978-f8c8-4b02-8e6a-605f7f955448",
"a4462616-0649-43f6-b16d-5ccaf5703bb4"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.