client.tables.put_tags
A method of the Tables endpoint.
- put_tags(id: int, table_tag_id: int) → Response
Add a tag to a table
API URL:
PUT /tables/{id}/tags/{table_tag_id}import civis client = civis.APIClient() response = client.tables.put_tags(...)
- Parameters:
- idint
The ID of the table.
- table_tag_idint
The ID of the tag.
- Returns:
civis.Response- idint
The ID of the table.
- table_tag_idint
The ID of the tag.