Add or remove a team from the HTTP functions closed beta
POST
/api/v1/admin/teams/{id}/functions-beta
const url = 'https://api.deploybase.eu/api/v1/api/v1/admin/teams/example/functions-beta';const options = { method: 'POST', headers: {Authorization: '<Authorization>', 'Content-Type': 'application/json'}, body: '{"enabled":true}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.deploybase.eu/api/v1/api/v1/admin/teams/example/functions-beta \ --header 'Authorization: <Authorization>' \ --header 'Content-Type: application/json' \ --data '{ "enabled": true }'Grants or revokes one team’s place in the HTTP functions closed beta (DEP-375/DEP-378). The flag is a GRANT, not an allowlist entry: while the beta is closed it overrides the plan gate entirely, so an enrolled team serves HTTP functions at the beta profile’s sizing even on a plan that excludes them. A false->true flip emails the team (the applicant and the team’s notification address); enabling an already-enrolled team is a no-op and sends nothing. Revoking leaves the granted-at stamp alone. Once FN_HTTP_BETA_OPEN is true the beta is open to every eligible plan and this flag no longer has any effect.
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ” id
required
string
Team ID (UUID)
Request Body
Section titled “ Request Body ”Beta enrolment flag
Media type application/json
object
enabled
required
boolean
Example generated
{ "enabled": true}Responses
Section titled “ Responses ”OK
Media type application/json
object
data
meta
object
request_id
string
timestamp
string
trace_id
string
Example generated
{ "data": "example", "meta": { "request_id": "example", "timestamp": "example", "trace_id": "example" }}Bad Request
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" }}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" }}Internal Server Error
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" }}Service Unavailable
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" }}