POST
/
environments
/
{environmentId}
/
gates

Path Parameters

environmentId
string
required

ID of the environment

Body

application/json
name
string
required

Human-readable name of the gate. This should be something helpful to organize gates.

outcome
enum<string>
required
Available options:
scope,
siteAccess,
block
scope
string

String for the resulting scope of the gate. If the rules of the gate apply to the user being verified, then this scope will be surfaced in the JWT. If a scope is not provided for the gate, the default behavior of the gate would be to block access to users that the rules do not currently apply to.

rules
object[]
required

The rules which will be used to evaluate users being verified. If multiple rules are present in a single gate, then all the rules need to apply for the user to gain the scope defined by the gate.

Response

201 - application/json
id
string
required

ID of the environment

name
string
required

Human-readable name of the gate. This should be something helpful to organize gates.

scope
string

String for the resulting scope of the gate. If the rules of the gate apply to the user being verified, then this scope will be surfaced in the JWT. If a scope is not provided for the gate, the default behavior of the gate would be to block access to users that the rules do not currently apply to.

enabledAt
string | null

If the gate is enabled, then this timestamp will be present.

rules
object[]
required

The rules which will be used to evaluate users being verified. If multiple rules are present in a single gate, then all the rules need to apply for the user to gain the scope defined by the gate.

outcome
enum<string>
required
Available options:
scope,
siteAccess,
block