Rate this page:
GET /1/plugins/{id}/
Get plugins
string
The ID or name of the organization
^[0-9a-fA-F]{24}$
1 2 3
curl --request GET \
--url 'https://api.trello.com/1/plugins/{id}/?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
PUT /1/plugins/{id}/
Update a Plugin
string
The ID or name of the organization
^[0-9a-fA-F]{24}$
1 2 3
curl --request PUT \
--url 'https://api.trello.com/1/plugins/{id}/?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
POST /1/plugins/{idPlugin}/listing
Create a new listing for a given locale for your Power-Up
string
The ID of the Power-Up for which you are creating a new listing.
^[0-9a-fA-F]{24}$
string
The description to show for the given locale
string
The locale that this listing should be displayed for.
string
The overview to show for the given locale.
string
The name to use for the given locale.
1 2 3
curl --request POST \
--url 'https://api.trello.com/1/plugins/{idPlugin}/listing?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
GET /1/plugins/{id}/compliance/memberPrivacy
string
The ID of the Power-Up
^[0-9a-fA-F]{24}$
1 2
curl --request GET \
--url 'https://api.trello.com/1/plugins/{id}/compliance/memberPrivacy?key=APIKey&token=APIToken'
Success
A schema has not been defined for this response code.
PUT /1/plugins/{idPlugin}/listings/{idListing}
Update an existing listing for your Power-Up
string
The ID of the Power-Up whose listing is being updated.
^[0-9a-fA-F]{24}$
string
The ID of the existing listing for the Power-Up that is being updated.
^[0-9a-fA-F]{24}$
string
The description to show for the given locale
string
The locale that this listing should be displayed for.
string
The overview to show for the given locale.
string
The name to use for the given locale.
1 2 3
curl --request PUT \
--url 'https://api.trello.com/1/plugins/{idPlugin}/listings/{idListing}?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
Rate this page: