Rate this page:
GET /1/actions/{id}
Get an Action
string
The ID of the Action
^[0-9a-fA-F]{24}$
boolean
true
boolean
false
string
all
or a comma-separated list of action fields
all
boolean
true
string
all
or a comma-separated list of member fields
avatarHash,fullName,initials,username
boolean
Whether to include the member object for the creator of the action
true
string
all
or a comma-separated list of member fields
avatarHash,fullName,initials,username
1 2
curl --request GET \
--url 'https://api.trello.com/1/actions/{id}?key=APIKey&token=APIToken'
Success
A schema has not been defined for this response code.
PUT /1/actions/{id}
Update a specific Action. Only comment actions can be updated. Used to edit the content of a comment.
string
The ID of the Action
^[0-9a-fA-F]{24}$
string
The new text for the comment
1 2
curl --request PUT \
--url 'https://api.trello.com/1/actions/{id}?text={text}&key=APIKey&token=APIToken'
Success
A schema has not been defined for this response code.
DELETE /1/actions/{id}
Delete a specific action. Only comment actions can be deleted.
string
The ID of the Action
^[0-9a-fA-F]{24}$
1 2
curl --request DELETE \
--url 'https://api.trello.com/1/actions/{id}?key=APIKey&token=APIToken'
Success
A schema has not been defined for this response code.
GET /1/actions/{id}/{field}
Get a specific property of an action
string
The ID of the Action
^[0-9a-fA-F]{24}$
string
An action field
Valid values: id
, idMemberCreator
, data
, type
, date
, limits
, display
, memberCreator
1 2 3
curl --request GET \
--url 'https://api.trello.com/1/actions/{id}/{field}?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
GET /1/actions/{id}/board
Get the Board for an Action
string
The ID of the action
^[0-9a-fA-F]{24}$
string
all
or a comma-separated list of board fields
Valid values: id
, name
, desc
, descData
, closed
, idMemberCreator
, idOrganization
, pinned
, url
, shortUrl
...(Show more)
1 2 3
curl --request GET \
--url 'https://api.trello.com/1/actions/{id}/board?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
GET /1/actions/{id}/card
Get the card for an action
string
The ID of the action
^[0-9a-fA-F]{24}$
string
all
or a comma-separated list of card fields
Valid values: id
, address
, badges
, checkItemStates
, closed
, coordinates
, creationMethod
, dueComplete
, dateLastActivity
, desc
...(Show more)
1 2 3
curl --request GET \
--url 'https://api.trello.com/1/actions/{id}/card?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
GET /1/actions/{id}/list
Get the List for an Action
string
The ID of the action
^[0-9a-fA-F]{24}$
string
all
or a comma-separated list of list fields
Valid values: id
1 2 3
curl --request GET \
--url 'https://api.trello.com/1/actions/{id}/list?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
GET /1/actions/{id}/member
Gets the member of an action (not the creator)
string
The ID of the Action
^[0-9a-fA-F]{24}$
string
all
or a comma-separated list of member fields
Valid values: id
1 2 3
curl --request GET \
--url 'https://api.trello.com/1/actions/{id}/member?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
GET /1/actions/{id}/memberCreator
Get the Member who created the Action
string
The ID of the Action
^[0-9a-fA-F]{24}$
string
all
or a comma-separated list of member fields
Valid values: id
1 2 3
curl --request GET \
--url 'https://api.trello.com/1/actions/{id}/memberCreator?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
GET /1/actions/{id}/organization
Get the Organization of an Action
string
The ID of the action
^[0-9a-fA-F]{24}$
string
all
or a comma-separated list of organization fields
Valid values: id
, name
1 2 3
curl --request GET \
--url 'https://api.trello.com/1/actions/{id}/organization?key=APIKey&token=APIToken' \
--header 'Accept: application/json'
Success
Content type | Value |
---|---|
application/json |
PUT /1/actions/{id}/text
Update a comment action
string
The ID of the action to update
^[0-9a-fA-F]{24}$
string
The new text for the comment
1 2
curl --request PUT \
--url 'https://api.trello.com/1/actions/{id}/text?value={value}&key=APIKey&token=APIToken'
Success
A schema has not been defined for this response code.
GET /1/actions/{idAction}/reactions
List reactions for an action
string
The ID of the action
^[0-9a-fA-F]{24}$
boolean
Whether to load the member as a nested resource. See Members Nested Resource
true
boolean
Whether to load the emoji as a nested resource.
true
1 2
curl --request GET \
--url 'https://api.trello.com/1/actions/{idAction}/reactions?key=APIKey&token=APIToken'
Success
A schema has not been defined for this response code.
POST /1/actions/{idAction}/reactions
Adds a new reaction to an action
string
The ID of the action
^[0-9a-fA-F]{24}$
1 2 3 4 5 6 7 8 9
curl --request POST \
--url 'https://api.trello.com/1/actions/{idAction}/reactions?key=APIKey&token=APIToken' \
--header 'Content-Type: application/json' \
--data '{
"shortName": "<string>",
"skinVariation": "<string>",
"native": "<string>",
"unified": "<string>"
}'
Success
A schema has not been defined for this response code.
GET /1/actions/{idAction}/reactions/{id}
Get information for a reaction
string
The ID of the Action
^[0-9a-fA-F]{24}$
string
The ID of the reaction
^[0-9a-fA-F]{24}$
boolean
Whether to load the member as a nested resource. See Members Nested Resource
true
boolean
Whether to load the emoji as a nested resource.
true
1 2
curl --request GET \
--url 'https://api.trello.com/1/actions/{idAction}/reactions/{id}?key=APIKey&token=APIToken'
Success
A schema has not been defined for this response code.
DELETE /1/actions/{idAction}/reactions/{id}
Deletes a reaction
string
The ID of the Action
^[0-9a-fA-F]{24}$
string
The ID of the reaction
^[0-9a-fA-F]{24}$
1 2
curl --request DELETE \
--url 'https://api.trello.com/1/actions/{idAction}/reactions/{id}?key=APIKey&token=APIToken'
Success
A schema has not been defined for this response code.
GET /1/actions/{idAction}/reactionsSummary
List a summary of all reactions for an action
string
The ID of the action
^[0-9a-fA-F]{24}$
1 2
curl --request GET \
--url 'https://api.trello.com/1/actions/{idAction}/reactionsSummary?key=APIKey&token=APIToken'
Success
A schema has not been defined for this response code.
Rate this page: