Update Organisation
PATCH
/organisations/{id}Change your organisation's settings.
Update the organisation name, branding, contact details, or other
configuration options. Only admins can make these changes.
Like other update endpoints, only send the fields you want to change.
When to use this
- Updating the organisation name or branding
- Changing contact information
- Modifying organisation-wide settings
Parameters
idpathrequiredOrganisation ID
Request Body
Response
Organisation updated successfully
Notes
ℹ️Only users with admin permissions can update organisation settings.
💡Changes to branding may take a few minutes to propagate to all systems.
Code Samples
Update Organisation using the TypeScript SDK:
import { BackstageClient } from '@ticketlayer/backstage';
const client = new BackstageClient({
organisationSlug: 'your-org',
});
client.setAccessToken('YOUR_ACCESS_TOKEN');
// Update organisation
const updated = await client.organisation.update('{{ORGANISATION_ID}}', {
name: 'Updated Name',
// Add fields to update
});
console.log(`Updated organisation: ${updated.name}`);