v1
latestOpenAPI 3.0.32026-08-061874701.5 MBsheetSummary
Add summary fields
Creates one or more summary fields for the specified sheet.
post/sheets/{sheetId}/summary/fields
Query parameters
renameIfConflictboolean
Set to true if you want to override the requirement for unique summary field names. Repeated names will be adjusted by appending "(1)" or similar after the field name.
Request body
Example request
[
{
"contactOptions": [
{
"email": "jane.doe@smartsheet.com",
"name": "Jane Doe"
},
{
"email": "john.doe@company.com",
"name": "John Doe"
}
],
"objectValue": {
"objectType": "CONTACT",
"email": "john.doe@acme.com",
"name": "John Doe",
"imageId": "1234!_qwer!_5667zxcvQWER!_ASDF",
"emailId": "23456789",
"userId": "12345678",
"lookUpName": true
}
}
]Response
OK
Example response
{
"message": "SUCCESS",
"result": [
{
"createdBy": {
"email": "jane.doe@smartsheet.com",
"name": "Jane Doe"
},
"modifiedBy": {
"email": "jane.doe@smartsheet.com",
"name": "Jane Doe"
},
"objectValue": {
"objectType": "CONTACT",
"email": "john.doe@acme.com",
"name": "John Doe",
"imageId": "1234!_qwer!_5667zxcvQWER!_ASDF",
"emailId": "23456789",
"userId": "12345678",
"lookUpName": true
}
}
]
}