Get team profile
GET
/api/v1/team/profile
const url = 'https://api.deploybase.eu/api/v1/api/v1/team/profile';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.deploybase.eu/api/v1/api/v1/team/profile \ --header 'Authorization: <Authorization>'Returns the authenticated team’s display name, URL slug, and whether the slug was ever deliberately chosen. slug_chosen_at is absent while the slug is still the one auto-picked at signup, which is what drives the “name your team” nudge in settings.
Authorizations
Section titled “ Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
object
data
meta
object
request_id
string
timestamp
string
trace_id
string
data
object
display_label
DisplayLabel is what to show a human. Never empty, even for the teams whose name is still a Zitadel org UUID.
string
id
string
name
string
slug
string
slug_chosen_at
SlugChosenAt is nil while the slug is still the one we auto-picked. That nil is what drives the settings nudge, so it is part of the response, not an internal detail.
string
Example generated
{ "data": { "display_label": "example", "id": "example", "name": "example", "slug": "example", "slug_chosen_at": "example" }, "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Unauthorized
Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Forbidden
Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Not Found
Media type application/json
object
code
string
details
error
string
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{ "code": "example", "details": "example", "error": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}