Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the connector beyond simple SELECT operations with Trello.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Trello, along with an indication of whether the procedure succeeded or failed.
CData Power BI Connector for Trello Stored Procedures
| Name | Description |
| CreateBoard | Create a new board. |
| CreateBoards | [DEPRECATED] The CreateBoards procedure is deprecated. Use the CreateBoard stored procedure to create a new board. |
| CreateList | Create a new list on a board. |
| CreateLists | [DEPRECATED] The CreateLists procedure is deprecated. Use the CreateList stored procedure to create a new list. |
| DownloadAttachment | Downloads an attachment from a card. If AttachmentId is not assigned a value, the provider will check how many attachments does the card have, if one it will continue downloading that attachment, if more it will stop and request for an AttachmentId. |
| GetMemberInfo | Retrieves information regarding a member. |
| GetOAuthAccessToken | Gets an authentication token from Trello. |
| GetOAuthAuthorizationURL | Gets the authorization URL, which must be opened separately by the user to grant access to your application. Only needed when developing Web apps. You will request the OAuthAccessToken from this URL. |
| UploadAttachment | Uploads an attachment to a specific card. Note: Must provide either AttachmentPath, Content/FileName or Url. Every aforementioned input takes precedence over the next one. |