Unleash Edge
Get or create valid tokens for the requested environment
This operation accepts a list of environments/project pairs to return tokens for. If they do not exist, Unleash will generate them
post/edge/issue-token
Request body
Example request
{
"tokens": [
{
"environment": "development",
"projects": [
"default"
]
}
]
}Response
validatedEdgeTokensSchema
Example response
{
"tokens": [
{
"projects": [
"developerexperience",
"enterprisegrowth"
],
"environment": "development",
"type": "client",
"token": "*:development.5c806b5320c88cf27e81f3e9b97dab298a77d5879316e3c2d806206b"
}
]
}