API Gateway
Post v2loginanonymous
AI Builder Endpoints
- API Gateway
- POSTPost v2loginanonymous
- POSTPost v2loginmfa
- GETGet v2login
- GETGet v2logincallback
- POSTPost v2logincallback
- GETGet v2loginazure
- POSTPost v2loginazurecallback
- GETGet v2me
- DELDelete v2user
- PATCHPatch v2user
- POSTPost v2userphoto
- GETGet v2useraccesstokens
- POSTPost v2useraccesstokens
- DELDelete v2useraccesstokens
- POSTPost v2usermfa
- POSTPost v2usermeta
- DELDelete v2usermeta
- POSTPost v2contacts
- DELDelete v2users
- PATCHPatch v2users
- POSTPost v2signup
- POSTPost v2userpassword
- POSTPost v2uservalidate
- POST
- permissions
- Prisme.ai Events
- Prisme.ai Runtime
- Prisme.ai Workspaces
- Secrets
- ApiKeys
API Gateway
Post v2loginanonymous
Anonymous authentication
POST
/
v2
/
login
/
anonymous
curl --request POST \
--url https://api.eda.prisme.ai/v2/login/anonymous \
--header 'Content-Type: application/json' \
--header 'X-Prismeai-API-Key: <api-key>' \
--data '{
"expiresAfter": 123
}'
{
"email": "foo@prisme.ai",
"status": "pending",
"language": "<string>",
"authData": {
"anonymous": {},
"prismeai": {},
"azure": {
"id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"language": "<any>"
}
},
"mfa": "totp",
"meta": {},
"platformRole": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"photo": "<string>",
"groups": [
"<string>"
],
"id": "<string>",
"sessionId": "<string>",
"expires": "<string>"
}
Authorizations
Body
application/json
Response
200
application/json
Success Response
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.eda.prisme.ai/v2/login/anonymous \
--header 'Content-Type: application/json' \
--header 'X-Prismeai-API-Key: <api-key>' \
--data '{
"expiresAfter": 123
}'
{
"email": "foo@prisme.ai",
"status": "pending",
"language": "<string>",
"authData": {
"anonymous": {},
"prismeai": {},
"azure": {
"id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "<string>",
"language": "<any>"
}
},
"mfa": "totp",
"meta": {},
"platformRole": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"photo": "<string>",
"groups": [
"<string>"
],
"id": "<string>",
"sessionId": "<string>",
"expires": "<string>"
}