Update an Organization
Update various attributes and configurable settings for the given organization.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization to update.
Body Parameters
name
(string)REQUIREDAn optional new name for the organization.
slug
(string)An optional new slug for the organization. Needs to be available and unique.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires the following scopes:org:write
PUT /api/0/organizations/{organization_slug}/
curl https://sentry.io/api/0/organizations/{organization_slug}/ \ -H 'Authorization: Bearer <auth_token>' \ -X PUT \ -H 'Content-Type: application/json' \ -d '{"name":"Impeccably Designated","slug":"impeccably-designated"}'
RESPONSESCHEMA
{
"access": [],
"allowSharedIssues": true,
"availableRoles": [
{
"id": "member",
"name": "Member"
},
{
"id": "admin",
"name": "Admin"
},
{
"id": "manager",
"name": "Manager"
},
{
"id": "owner",
"name": "Owner"
}
],
"avatar": {
"avatarType": "letter_avatar",
"avatarUuid": null
},
"dataScrubber": false,
"dataScrubberDefaults": false,
"dateCreated": "2018-11-06T21:20:19.548Z",
"defaultRole": "member",
"enhancedPrivacy": false,
"experiments": {},
"features": [
"new-teams",
"shared-issues",
"new-issue-ui",
"repos",
"open-membership",
"invite-members",
"sso-saml2",
"sso-basic",
"suggested-commits"
],
"id": "3",
"isDefault": false,
"isEarlyAdopter": false,
"name": "Impeccably Designated",
"onboardingTasks": [],
"openMembership": true,
"pendingAccessRequests": 0,
"projects": [],
"quota": {
"accountLimit": 0,
"maxRate": 0,
"maxRateInterval": 60,
"projectLimit": 100
},
"require2FA": false,
"safeFields": [],
"scrapeJavaScript": true,
"scrubIPAddresses": false,
"sensitiveFields": [],
"slug": "impeccably-designated",
"status": {
"id": "active",
"name": "active"
},
"storeCrashReports": 0,
"teams": [],
"trustedRelays": []
}