Get plugins
TrelloID
RequiredSuccess
1
2
3
curl --request GET \
--url 'https://api.trello.com/1/plugins/{id}/?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
1
2
3
{
"id": "5abbe4b7ddc1b351ef961414"
}
Update a Plugin
TrelloID
RequiredSuccess
1
2
3
curl --request PUT \
--url 'https://api.trello.com/1/plugins/{id}/?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
1
2
3
{
"id": "5abbe4b7ddc1b351ef961414"
}
Create a new listing for a given locale for your Power-Up
TrelloID
Requiredstring
string
string
string
Success
1
2
3
4
5
6
7
8
9
10
curl --request POST \
--url 'https://api.trello.com/1/plugins/{idPlugin}/listing?key=APIKey&token=APIToken' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"description": "<string>",
"locale": "<string>",
"overview": "<string>",
"name": "<string>"
}'
1
2
3
4
5
6
7
{
"id": "5abbe4b7ddc1b351ef961414",
"name": "Attachment Section Example",
"locale": "en-US",
"description": "The [Glitch](https://glitch.com) Power-Up allows you to...",
"overview": ""
}
TrelloID
RequiredSuccess
1
2
curl --request GET \
--url 'https://api.trello.com/1/plugins/{id}/compliance/memberPrivacy?key=APIKey&token=APIToken'
Update an existing listing for your Power-Up
TrelloID
RequiredTrelloID
Requiredstring
string
string
string
Success
1
2
3
4
5
6
7
8
9
10
curl --request PUT \
--url 'https://api.trello.com/1/plugins/{idPlugin}/listings/{idListing}?key=APIKey&token=APIToken' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"description": "<string>",
"locale": "<string>",
"overview": "<string>",
"name": "<string>"
}'
1
2
3
4
5
6
7
{
"id": "5abbe4b7ddc1b351ef961414",
"name": "Attachment Section Example",
"locale": "en-US",
"description": "The [Glitch](https://glitch.com) Power-Up allows you to...",
"overview": ""
}
Rate this page: