- Common Error Responses
- Authentication
- Filtering Data
- Getting Started
- Authentication
- User Confirmation
- User Invitation
- Password Reset
- Impersonation
- MFA
- Sign in authenticationPOST
- Sign in with recovery codePOST
- Sign out authenticationDELETE
- Advanced Reports
- Audit
- Notifications
- Exceptions
- Hosts
- Organizations
- Organization Subscriptions
- Subscribe to a planPOST
- List organizationsGET
- Create OrganizationPOST
- List dependent subscriptionsGET
- Retrieve an organizationGET
- Update an organizationPUT
- Delete an organizationDELETE
- Subscribe an organization to a planPOST
- Unsubscribe an organization from a planPOST
- Change users OrganizationPUT
- Export organizationsGET
- Whitelabel Settings
- Port Lists
- Reports
- Scanners
- Scans
- Schedules
- Targets
- User
- User 2FA
- User Preferences
- Get current user
- Update current user
- Change current user password
- Get current user active plans (Not implemented yet)
- Get organization members
- Get current user products
- Get current organization
- Update current organization
- Get subscriptions history
- Change users product
- Checks if authorization token is valid
- Get current user permissions
- Check if the user can be deleted
- Delete my account
- Generates a new access token
- Revokes the current access token
- (Admin) Transfers all the resources from the user to another user
- Users
- Vulnerabilities
- Webhooks
Update an organization
PUT
/v2/organizations/{id}
Organizations
Last modified:2025-04-24 10:59:46
Request
Path Params
id
stringÂ
required
Body Params application/json
organization
objectÂ
optional
name
stringÂ
required
company_name
stringÂ
required
description
stringÂ
optional
address
stringÂ
optional
city
stringÂ
optional
state
stringÂ
optional
zipcode
stringÂ
optional
country
stringÂ
optional
phone
stringÂ
optional
website
stringÂ
optional
email
stringÂ
optional
contact_name
stringÂ
optional
contact_title
stringÂ
optional
contact_phone
stringÂ
optional
contact_email
stringÂ
optional
Example
{
"organization": {
"name": "string",
"company_name": "string",
"description": "string",
"address": "string",
"city": "string",
"state": "string",
"zipcode": "string",
"country": "string",
"phone": "string",
"website": "string",
"email": "string",
"contact_name": "string",
"contact_title": "string",
"contact_phone": "string",
"contact_email": "string"
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/v2/organizations/' \
--header 'Content-Type: application/json' \
--data-raw '{
"organization": {
"name": "string",
"company_name": "string",
"description": "string",
"address": "string",
"city": "string",
"state": "string",
"zipcode": "string",
"country": "string",
"phone": "string",
"website": "string",
"email": "string",
"contact_name": "string",
"contact_title": "string",
"contact_phone": "string",
"contact_email": "string"
}
}'
Responses
🟢200OK
This response does not have a body.
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
Modified at 2025-04-24 10:59:46