GET

Get an Enterprise

Get an enterprise by its ID.

Request

Path parameters

id

TrelloID

Required

Query parameters

fields

string

members

string

member_fields

string

member_filter

string

member_sort

string

member_sortBy

string

member_sortOrder

string

member_startIndex

integer

member_count

integer

organizations

string

Responses

Success

application/json

Enterprise
GET/enterprises/{id}
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 { "id": "5abbe4b7ddc1b351ef961414", "name": "bentley_test", "displayName": "Bentley's Test Enterprise!", "logoHash": "<string>", "logoUrl": "<string>", "prefs": { "ssoOnly": false, "signup": { "banner": "<string>", "bannerHtml": "<p>Hello</p>\n" }, "mandatoryTransferDate": "<string>", "brandingColor": "<string>", "autoJoinOrganizations": false, "notifications": {}, "maxMembers": 2154 }, "organizationPrefs": { "boardVisibilityRestrict": {}, "boardDeleteRestrict": {}, "attachmentRestrictions": [ "computer" ] }, "ssoActivationFailed": true, "idAdmins": [ "5abbe4b7ddc1b351ef961414" ], "enterpriseDomains": [ "<string>" ], "isRealEnterprise": true, "pluginWhitelistingEnabled": [ "5abbe4b7ddc1b351ef961414" ], "idOrganizations": [ "5abbe4b7ddc1b351ef961414" ], "products": [ 2154 ], "licenses": { "maxMembers": 2154, "totalMembers": 5, "relatedEnterprises": [ { "name": "enterprise_name", "displayName": "My Test Enterprise!", "count": 5 } ] }, "domains": [ "<string>" ], "dateOrganizationPrefsLastUpdated": "2019-08-22T18:15:53.546Z", "idp": { "requestSigned": false, "certificate": "<string>", "loginUrl": "<string>" } }
GET

Get auditlog data for an Enterprise

Returns an array of Actions related to the Enterprise object. Used for populating data sent to Google Sheets from an Enterprise's audit log page: https://trello.com/e/{enterprise_name}/admin/auditlog. An Enterprise admin token is required for this route.

NOTE: For enterprises that have opted in to user management via AdminHub, the auditlog will will contain actions taken in AdminHub, but may not contain the source for those actions.

Request

Path parameters

id

TrelloID

Required

Responses

Success

application/json

array<EnterpriseAuditLog>

GET/enterprises/{id}/auditlog
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/auditlog?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [ { "idAction": "5abbe4b7ddc1b351ef961414", "type": "addOrganizationToEnterprise", "date": "2018-04-26T17:03:25.155Z", "memberCreator": { "id": "5abbe4b7ddc1b351ef961414", "username": "bobloblaw", "fullName": "Bob Loblaw (Trello)" }, "organization": { "enterpriseJoinRequest": { "idEnterprise": "5abbe4b7ddc1b351ef961414", "idMember": "5abbe4b7ddc1b351ef961414", "date": "2018-04-26T17:03:25.155Z" }, "id": "5abbe4b7ddc1b351ef961414", "name": "organization name" }, "member": { "id": "5abbe4b7ddc1b351ef961414", "username": "bentleycook", "fullName": "Bentley Cook" } } ]
GET

Get Enterprise admin Members

Get an enterprise's admin members.

Request

Path parameters

id

TrelloID

Required

Query parameters

fields

string

Responses

Success

application/json

EnterpriseAdmin
GET/enterprises/{id}/admins
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/admins?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 { "id": "5abbe4b7ddc1b351ef961414", "fullName": "Bob Loblaw", "username": "bobloblaw" }
GET

Get signupUrl for Enterprise

Get the signup URL for an enterprise.

Request

Path parameters

id

TrelloID

Required

Query parameters

authenticate

boolean

confirmationAccepted

boolean

returnUrl

string

tosAccepted

boolean

Responses

Success

application/json

object
GET/enterprises/{id}/signupUrl
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/signupUrl?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 { "signupUrl": "<string>" }
GET

Get Users of an Enterprise

Get an enterprise's users. You can choose to retrieve licensed members, board guests, etc. The response is paginated and will return 100 users at a time.

Request

Path parameters

id

TrelloID

Required

Query parameters

licensed

boolean

deactivated

boolean

collaborator

boolean

managed

boolean

admin

boolean

activeSince

string

inactiveSince

string

search

string

cursor

string

Responses

Success

application/json

array<Membership>

GET/enterprises/{id}/members/query
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/members/query?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 [ { "managed": true, "licensed": true, "admin": true, "deactivated": true, "collaborator": true, "member": { "id": "646e92a0a016198d3cf81e8a", "fullname": "Lex Math", "username": "amath", "dateLastImpression": "2023-05-24T22:41:36.406Z", "email": "amath@trello.com", "initials": "AM", "avatarURL": "trello.com/avatarURL", "memberType": "Admin", "confirmed": true } } ]
GET

Get Members of Enterprise

Get the members of an enterprise.

Request

Path parameters

id

TrelloID

Required

Query parameters

fields

string

filter

string

sort

string

sortBy

string

sortOrder

string

startIndex

integer

count

string

organization_fields

string

board_fields

string

Responses

Success

application/json

array<Member>

GET/enterprises/{id}/members
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/members?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 [ { "id": "5abbe4b7ddc1b351ef961414", "activityBlocked": false, "avatarHash": "fc8faaaee46666a4eb8b626c08933e16", "avatarUrl": "https://trello-avatars.s3.amazonaws.com/fc8faaaee46666a4eb8b626c08933e16", "bio": "👋 I'm a developer advocate at Trello!", "bioData": { "emoji": {} }, "confirmed": true, "fullName": "Bentley Cook", "idEnterprise": "5abbe4b7ddc1b351ef961414", "idEnterprisesDeactivated": [ "<string>" ], "idMemberReferrer": "5abbe4b7ddc1b351ef961414", "idPremOrgsAdmin": [ "5abbe4b7ddc1b351ef961414" ], "initials": "BC", "memberType": "normal", "nonPublic": { "fullName": "Bentley Cook", "initials": "BC", "avatarUrl": "https://trello-members.s3.amazonaws.com/5b02e7f4e1facdc393169f9d/db2adf80c2e6c26b76e1f10400eb4c45", "avatarHash": "db2adf80c2e6c26b76e1f10400eb4c45" }, "nonPublicAvailable": false, "products": [ 2154 ], "url": "https://trello.com/bentleycook", "username": "bentleycook", "status": "disconnected", "aaEmail": "<string>", "aaEnrolledDate": "<string>", "aaId": "<string>", "avatarSource": "gravatar", "email": "bcook@atlassian.com", "gravatarHash": "0a1e804f6e35a65ae5e1f7ef4c92471c", "idBoards": [ "5abbe4b7ddc1b351ef961414" ], "idOrganizations": [ "5abbe4b7ddc1b351ef961414" ], "idEnterprisesAdmin": [ "5abbe4b7ddc1b351ef961414" ], "limits": { "status": "ok", "disableAt": 36000, "warnAt": 32400 }, "loginTypes": [ "password" ], "marketingOptIn": { "optedIn": false, "date": "2018-04-26T17:03:25.155Z" }, "messagesDismissed": { "name": "ad-security-features", "count": "<string>", "lastDismissed": "2019-03-11T20:19:46.809Z", "_id": "5abbe4b7ddc1b351ef961414" }, "oneTimeMessagesDismissed": [ "<string>" ], "prefs": { "timezoneInfo": { "offsetCurrent": 360, "timezoneCurrent": "CST", "offsetNext": 300, "dateNext": "2020-03-08T08:00:00.000Z", "timezoneNext": "CDT" }, "privacy": { "fullName": "public", "avatar": "public" }, "sendSummaries": true, "minutesBetweenSummaries": 60, "minutesBeforeDeadlineToNotify": 1440, "colorBlind": true, "locale": "en-AU", "timezone": "America/Chicago", "twoFactor": { "enabled": true, "needsNewBackups": false } }, "trophies": [ "<string>" ], "uploadedAvatarHash": "dac3ad49ff117829dd63a79bb2ea3426", "uploadedAvatarUrl": "https://trello-avatars.s3.amazonaws.com/dac3ad49ff117829dd63a79bb2ea3426", "premiumFeatures": [ "<string>" ], "isAaMastered": false, "ixUpdate": 2154, "idBoardsPinned": [ "5abbe4b7ddc1b351ef961414" ] } ]
GET

Get a Member of Enterprise

Get a specific member of an enterprise by ID.

Request

Path parameters

id

TrelloID

Required
idMember

TrelloID

Required

Query parameters

fields

string

organization_fields

string

board_fields

string

Responses

Success

application/json

Member
GET/enterprises/{id}/members/{idMember}
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/members/{idMember}?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 { "id": "5abbe4b7ddc1b351ef961414", "activityBlocked": false, "avatarHash": "fc8faaaee46666a4eb8b626c08933e16", "avatarUrl": "https://trello-avatars.s3.amazonaws.com/fc8faaaee46666a4eb8b626c08933e16", "bio": "👋 I'm a developer advocate at Trello!", "bioData": { "emoji": {} }, "confirmed": true, "fullName": "Bentley Cook", "idEnterprise": "5abbe4b7ddc1b351ef961414", "idEnterprisesDeactivated": [ "<string>" ], "idMemberReferrer": "5abbe4b7ddc1b351ef961414", "idPremOrgsAdmin": [ "5abbe4b7ddc1b351ef961414" ], "initials": "BC", "memberType": "normal", "nonPublic": { "fullName": "Bentley Cook", "initials": "BC", "avatarUrl": "https://trello-members.s3.amazonaws.com/5b02e7f4e1facdc393169f9d/db2adf80c2e6c26b76e1f10400eb4c45", "avatarHash": "db2adf80c2e6c26b76e1f10400eb4c45" }, "nonPublicAvailable": false, "products": [ 2154 ], "url": "https://trello.com/bentleycook", "username": "bentleycook", "status": "disconnected", "aaEmail": "<string>", "aaEnrolledDate": "<string>", "aaId": "<string>", "avatarSource": "gravatar", "email": "bcook@atlassian.com", "gravatarHash": "0a1e804f6e35a65ae5e1f7ef4c92471c", "idBoards": [ "5abbe4b7ddc1b351ef961414" ], "idOrganizations": [ "5abbe4b7ddc1b351ef961414" ], "idEnterprisesAdmin": [ "5abbe4b7ddc1b351ef961414" ], "limits": { "status": "ok", "disableAt": 36000, "warnAt": 32400 }, "loginTypes": [ "password" ], "marketingOptIn": { "optedIn": false, "date": "2018-04-26T17:03:25.155Z" }, "messagesDismissed": { "name": "ad-security-features", "count": "<string>", "lastDismissed": "2019-03-11T20:19:46.809Z", "_id": "5abbe4b7ddc1b351ef961414" }, "oneTimeMessagesDismissed": [ "<string>" ], "prefs": { "timezoneInfo": { "offsetCurrent": 360, "timezoneCurrent": "CST", "offsetNext": 300, "dateNext": "2020-03-08T08:00:00.000Z", "timezoneNext": "CDT" }, "privacy": { "fullName": "public", "avatar": "public" }, "sendSummaries": true, "minutesBetweenSummaries": 60, "minutesBeforeDeadlineToNotify": 1440, "colorBlind": true, "locale": "en-AU", "timezone": "America/Chicago", "twoFactor": { "enabled": true, "needsNewBackups": false } }, "trophies": [ "<string>" ], "uploadedAvatarHash": "dac3ad49ff117829dd63a79bb2ea3426", "uploadedAvatarUrl": "https://trello-avatars.s3.amazonaws.com/dac3ad49ff117829dd63a79bb2ea3426", "premiumFeatures": [ "<string>" ], "isAaMastered": false, "ixUpdate": 2154, "idBoardsPinned": [ "5abbe4b7ddc1b351ef961414" ] }
GET

Get whether an organization can be transferred to an enterprise.

Get whether an organization can be transferred to an enterprise.

Request

Path parameters

id

TrelloID

Required
idOrganization

TrelloID

Required

Responses

Success

application/json

TransferrableOrganization
GET/enterprises/{id}/transferrable/organization/{idOrganization}
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/transferrable/organization/{idOrganization}?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 { "transferrable": true, "newBillableMembers": [ { "id": "5abbe4b7ddc1b351ef961414", "fullName": "Bob Loblaw", "username": "bobloblaw", "initials": "BL", "avatarHash": "fc8faaaee46666a4eb8b626c08933e16" } ], "restrictedMembers": [ { "id": "5abbe4b7ddc1b351ef961414", "fullName": "Bob Loblaw", "username": "bobloblaw", "initials": "BL", "avatarHash": "fc8faaaee46666a4eb8b626c08933e16" } ] }
GET

Get a bulk list of organizations that can be transferred to an enterprise.

Get a list of organizations that can be transferred to an enterprise when given a bulk list of organizations.

Request

Path parameters

id

TrelloID

Required
idOrganizations

array<Organization>

Required

Responses

Success

application/json

array<TransferrableOrganization>

GET/enterprises/{id}/transferrable/bulk/{idOrganizations}
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/transferrable/bulk/{idOrganizations}?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 [ { "transferrable": true, "newBillableMembers": [ { "id": "5abbe4b7ddc1b351ef961414", "fullName": "Bob Loblaw", "username": "bobloblaw", "initials": "BL", "avatarHash": "fc8faaaee46666a4eb8b626c08933e16" } ], "restrictedMembers": [ { "id": "5abbe4b7ddc1b351ef961414", "fullName": "Bob Loblaw", "username": "bobloblaw", "initials": "BL", "avatarHash": "fc8faaaee46666a4eb8b626c08933e16" } ] } ]
PUT

Decline enterpriseJoinRequests from one organization or a bulk list of organizations.

Decline enterpriseJoinRequests from one organization or bulk amount of organizations

Request

Path parameters

id

TrelloID

Required

Query parameters

idOrganizations

array<Organization>

Required

Responses

Success

PUT/enterprises/${id}/enterpriseJoinRequest/bulk
1 2 curl --request PUT \ --url 'https://api.trello.com/1/enterprises/${id}/enterpriseJoinRequest/bulk?idOrganizations={idOrganizations}&key=APIKey&token=APIToken'
GET

Get ClaimableOrganizations of an Enterprise

Get the Workspaces that are claimable by the enterprise by ID. Can optionally query for workspaces based on activeness/ inactiveness.

Request

Path parameters

id

TrelloID

Required

Query parameters

limit

integer

cursor

string

name

string

activeSince

string

inactiveSince

string

Responses

Success

application/json

ClaimableOrganizations
GET/enterprises/{id}/claimableOrganizations
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/claimableOrganizations?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 { "organizations": [ { "name": "organization_name", "displayName": "Organization Name", "activeMembershipCount": 5, "idActiveAdmins": [ "5abbe4b7ddc1b351ef961414" ], "products": [ 2154 ], "id": "5abbe4b7ddc1b351ef961414", "logoUrl": "<string>", "dateLastActive": "2019-08-22T18:15:53.546Z" } ], "claimableCount": 2 }
GET

Get PendingOrganizations of an Enterprise

Get the Workspaces that are pending for the enterprise by ID.

Request

Path parameters

id

TrelloID

Required

Query parameters

activeSince

string

inactiveSince

string

Responses

Success

application/json

array<PendingOrganizations>

GET/enterprises/{id}/pendingOrganizations
1 2 3 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/pendingOrganizations?key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 [ { "id": "5abbe4b7ddc1b351ef961414", "idMember": "5abbe4b7ddc1b351ef961414", "memberRequestor": { "id": "5abbe4b7ddc1b351ef961414", "fullName": "Bob Loblaw (Trello)" }, "date": "2018-10-17T19:10:14.808Z", "displayName": "Organization Name", "membershipCount": 2, "logoUrl": "<string>", "transferability": { "transferrable": true, "newBillableMembers": [ { "id": "5abbe4b7ddc1b351ef961414", "fullName": "Bob Loblaw", "username": "bobloblaw", "initials": "BL", "avatarHash": "fc8faaaee46666a4eb8b626c08933e16" } ], "restrictedMembers": [ { "id": "5abbe4b7ddc1b351ef961414", "fullName": "Bob Loblaw", "username": "bobloblaw", "initials": "BL", "avatarHash": "fc8faaaee46666a4eb8b626c08933e16" } ] } } ]
POST

Create an auth Token for an Enterprise.

Create an auth Token for an Enterprise.

Request

Path parameters

id

string

Required

Query parameters

expiration

string

Responses

Success

POST/enterprises/{id}/tokens
1 2 curl --request POST \ --url 'https://api.trello.com/1/enterprises/{id}/tokens?key=APIKey&token=APIToken'
PUT

Transfer an Organization to an Enterprise.

Transfer an organization to an enterprise.

NOTE: For enterprises that have opted in to user management via AdminHub, this endpoint will result in the organization being added to the enterprise asynchronously. A 200 response only indicates receipt of the request, it does not indicate successful addition to the enterprise.

Request

Path parameters

id

TrelloID

Required

Query parameters

idOrganization

string

Required

Responses

Success

application/json

array<Organization>

PUT/enterprises/{id}/organizations
1 2 3 curl --request PUT \ --url 'https://api.trello.com/1/enterprises/{id}/organizations?idOrganization={idOrganization}&key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 [ { "id": "5abbe4b7ddc1b351ef961414" } ]
PUT

Update a Member's licensed status

This endpoint is used to update whether the provided Member should use one of the Enterprise's available licenses or not. Revoking a license will deactivate a Member of an Enterprise.

NOTE: Revoking of licenses is not possible for enterprises that have opted in to user management via AdminHub.

Request

Path parameters

id

TrelloID

Required
idMember

TrelloID

Required

Query parameters

value

boolean

Required

Responses

Success

application/json

Member
PUT/enterprises/{id}/members/{idMember}/licensed
1 2 3 curl --request PUT \ --url 'https://api.trello.com/1/enterprises/{id}/members/{idMember}/licensed?value={value}&key=APIKey&token=APIToken' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 { "id": "5abbe4b7ddc1b351ef961414", "activityBlocked": false, "avatarHash": "fc8faaaee46666a4eb8b626c08933e16", "avatarUrl": "https://trello-avatars.s3.amazonaws.com/fc8faaaee46666a4eb8b626c08933e16", "bio": "👋 I'm a developer advocate at Trello!", "bioData": { "emoji": {} }, "confirmed": true, "fullName": "Bentley Cook", "idEnterprise": "5abbe4b7ddc1b351ef961414", "idEnterprisesDeactivated": [ "<string>" ], "idMemberReferrer": "5abbe4b7ddc1b351ef961414", "idPremOrgsAdmin": [ "5abbe4b7ddc1b351ef961414" ], "initials": "BC", "memberType": "normal", "nonPublic": { "fullName": "Bentley Cook", "initials": "BC", "avatarUrl": "https://trello-members.s3.amazonaws.com/5b02e7f4e1facdc393169f9d/db2adf80c2e6c26b76e1f10400eb4c45", "avatarHash": "db2adf80c2e6c26b76e1f10400eb4c45" }, "nonPublicAvailable": false, "products": [ 2154 ], "url": "https://trello.com/bentleycook", "username": "bentleycook", "status": "disconnected", "aaEmail": "<string>", "aaEnrolledDate": "<string>", "aaId": "<string>", "avatarSource": "gravatar", "email": "bcook@atlassian.com", "gravatarHash": "0a1e804f6e35a65ae5e1f7ef4c92471c", "idBoards": [ "5abbe4b7ddc1b351ef961414" ], "idOrganizations": [ "5abbe4b7ddc1b351ef961414" ], "idEnterprisesAdmin": [ "5abbe4b7ddc1b351ef961414" ], "limits": { "status": "ok", "disableAt": 36000, "warnAt": 32400 }, "loginTypes": [ "password" ], "marketingOptIn": { "optedIn": false, "date": "2018-04-26T17:03:25.155Z" }, "messagesDismissed": { "name": "ad-security-features", "count": "<string>", "lastDismissed": "2019-03-11T20:19:46.809Z", "_id": "5abbe4b7ddc1b351ef961414" }, "oneTimeMessagesDismissed": [ "<string>" ], "prefs": { "timezoneInfo": { "offsetCurrent": 360, "timezoneCurrent": "CST", "offsetNext": 300, "dateNext": "2020-03-08T08:00:00.000Z", "timezoneNext": "CDT" }, "privacy": { "fullName": "public", "avatar": "public" }, "sendSummaries": true, "minutesBetweenSummaries": 60, "minutesBeforeDeadlineToNotify": 1440, "colorBlind": true, "locale": "en-AU", "timezone": "America/Chicago", "twoFactor": { "enabled": true, "needsNewBackups": false } }, "trophies": [ "<string>" ], "uploadedAvatarHash": "dac3ad49ff117829dd63a79bb2ea3426", "uploadedAvatarUrl": "https://trello-avatars.s3.amazonaws.com/dac3ad49ff117829dd63a79bb2ea3426", "premiumFeatures": [ "<string>" ], "isAaMastered": false, "ixUpdate": 2154, "idBoardsPinned": [ "5abbe4b7ddc1b351ef961414" ] }
PUT

Deactivate a Member of an Enterprise.

Deactivate a Member of an Enterprise.

NOTE: Deactivation is not possible for enterprises that have opted in to user management via AdminHub.

Request

Path parameters

id

TrelloID

Required
idMember

TrelloID

Required

Query parameters

value

boolean

Required
fields

MemberFields

organization_fields

OrganizationFields

board_fields

BoardFields

Responses

Success

PUT/enterprises/{id}/members/{idMember}/deactivated
1 2 curl --request PUT \ --url 'https://api.trello.com/1/enterprises/{id}/members/{idMember}/deactivated?value={value}&key=APIKey&token=APIToken'
PUT

Update Member to be admin of Enterprise

Make Member an admin of Enterprise.

NOTE: This endpoint is not available to enterprises that have opted in to user management via AdminHub.

Request

Path parameters

id

TrelloID

Required
idMember

TrelloID

Required

Responses

Success

PUT/enterprises/{id}/admins/{idMember}
1 2 curl --request PUT \ --url 'https://api.trello.com/1/enterprises/{id}/admins/{idMember}?key=APIKey&token=APIToken'
DEL

Remove a Member as admin from Enterprise.

Remove a member as admin from an enterprise.

NOTE: This endpoint is not available to enterprises that have opted in to user management via AdminHub.

Request

Path parameters

id

TrelloID

Required
idMember

TrelloID

Required

Responses

Success

DEL/enterprises/{id}/admins/{idMember}
1 2 curl --request DELETE \ --url 'https://api.trello.com/1/enterprises/{id}/admins/{idMember}?key=APIKey&token=APIToken'
DEL

Delete an Organization from an Enterprise.

Remove an organization from an enterprise.

Request

Path parameters

id

TrelloID

Required
idOrg

TrelloID

Required

Responses

Success

DEL/enterprises/{id}/organizations/{idOrg}
1 2 curl --request DELETE \ --url 'https://api.trello.com/1/enterprises/{id}/organizations/{idOrg}?key=APIKey&token=APIToken'
GET

Bulk accept a set of organizations to an Enterprise.

Accept an array of organizations to an enterprise.

NOTE: For enterprises that have opted in to user management via AdminHub, this endpoint will result in organizations being added to the enterprise asynchronously. A 200 response only indicates receipt of the request, it does not indicate successful addition to the enterprise.

Request

Path parameters

id

TrelloID

Required
idOrganizations

array<Organization>

Required

Responses

Success

GET/enterprises/{id}/organizations/bulk/{idOrganizations}
1 2 curl --request GET \ --url 'https://api.trello.com/1/enterprises/{id}/organizations/bulk/{idOrganizations}?key=APIKey&token=APIToken'

Rate this page: