Details on the various actions that can be performed on the
Data Table Row resource, including the expected
parameters and the potential responses.
Deletes a data table row
result = client.data_table_row.delete(
applicationId=my_application_id,
dataTableId=my_data_table_id,
rowId=my_row_id)
print(result)
The client must be configured with a valid api access token to call this
action. The token must include at least one of the following scopes:
all.Application, all.Organization, all.User, dataTableRow.*, or dataTableRow.delete.
| Name |
Type |
Required |
Description |
Default |
Example |
| applicationId |
string |
Y |
ID associated with the application |
|
575ec8687ae143cd83dc4a97 |
| dataTableId |
string |
Y |
ID associated with the data table |
|
575ed78e7ae143cd83dc4aab |
| rowId |
string |
Y |
ID associated with the data table row |
|
596f832b128eda5cfe765443 |
| losantdomain |
string |
N |
Domain scope of request (rarely needed) |
|
example.com |
| Code |
Type |
Description |
| 200 |
Success |
If data table row was successfully deleted |
| Code |
Type |
Description |
| 400 |
Error |
Error if malformed request |
| 404 |
Error |
Error if data table row was not found |
Retrieves the data table row
result = client.data_table_row.get(
applicationId=my_application_id,
dataTableId=my_data_table_id,
rowId=my_row_id)
print(result)
The client must be configured with a valid api access token to call this
action. The token must include at least one of the following scopes:
all.Application, all.Application.read, all.Organization, all.Organization.read, all.User, all.User.read, dataTableRow.*, or dataTableRow.get.
| Name |
Type |
Required |
Description |
Default |
Example |
| applicationId |
string |
Y |
ID associated with the application |
|
575ec8687ae143cd83dc4a97 |
| dataTableId |
string |
Y |
ID associated with the data table |
|
575ed78e7ae143cd83dc4aab |
| rowId |
string |
Y |
ID associated with the data table row |
|
596f832b128eda5cfe765443 |
| losantdomain |
string |
N |
Domain scope of request (rarely needed) |
|
example.com |
| Code |
Type |
Description |
| 400 |
Error |
Error if malformed request |
| 404 |
Error |
Error if data table row was not found |
Updates the data table row
result = client.data_table_row.patch(
applicationId=my_application_id,
dataTableId=my_data_table_id,
rowId=my_row_id,
dataTableRow=my_data_table_row)
print(result)
The client must be configured with a valid api access token to call this
action. The token must include at least one of the following scopes:
all.Application, all.Organization, all.User, dataTableRow.*, or dataTableRow.patch.
| Name |
Type |
Required |
Description |
Default |
Example |
| applicationId |
string |
Y |
ID associated with the application |
|
575ec8687ae143cd83dc4a97 |
| dataTableId |
string |
Y |
ID associated with the data table |
|
575ed78e7ae143cd83dc4aab |
| rowId |
string |
Y |
ID associated with the data table row |
|
596f832b128eda5cfe765443 |
| dataTableRow |
Data Table Row Insert Update |
Y |
Object containing updated properties for the data table row |
|
Data Table Row Insert Update Example |
| losantdomain |
string |
N |
Domain scope of request (rarely needed) |
|
example.com |
| Code |
Type |
Description |
| 200 |
Data Table Row |
Updated data table row information |
| Code |
Type |
Description |
| 400 |
Error |
Error if malformed request |
| 404 |
Error |
Error if data table row was not found |