TeamProfileFields
Retrieves a team profile's Fields
Select
The add-in uses the Slack API to filter the results by the following columns and operators while the rest of the filter is executed client-side within the add-in.
- IsHidden supports the = operator.
SELECT * FROM TeamProfileFields
SELECT * FROM TeamProfileFields WHERE IsHidden = false
Columns
| Name | Type | References | Description |
| Id [KEY] | String | The Id of the field. | |
| Ordering | Integer | The placement of the field on the profile. | |
| Label | String | The text that will appear under the field. | |
| Hint | String | Any additional context the user may need to understand the field. | |
| Type | String | The format the field supports. Can be date, link, long_text, options_list, tags, text, or user. | |
| PossibleValues | String | The values that allowed to be chosen by the user. | |
| OptionsIsScim | Boolean | If true, can be updated via SCIM APIs. | |
| OptionsIsProtected | Boolean | ||
| IsHidden | Boolean | Indicates whether the field is hidden or not. | |
| SectionId | String | The id of the section the field is in. |