Create a custom icon
POST /io/board/:boardId/customIcon
Create a custom icon on a board.
Request Properties
| Param | Type | Usage | Default | 
|---|---|---|---|
| name | string | Name of the custom icon | |
| iconColor | string | Color of the icon | #212121 | 
| policy | string | Text that describes the policy for using this icon | |
| iconName | string | The name of the chosen icon | blank_icon | 
Minimal Request
Minimum fields required
{
    "name": "New custom icon"
}
Full Request
{
    "name": "New custom icon",
    "iconColor": "#f0f0f0",
    "policy": "Some notes about when to use this icon",
    "iconName": "selected_icon.png"
}
Example Successful Response
201 Created
{
    "id": "947429871",
    "name": "New custom icon",
    "iconColor": "#f0f0f0",
    "policy": "Some notes about when to use this icon",
    "iconName": "selected_icon.png"
}

