update doc

This commit is contained in:
einhornimmond 2021-10-07 16:11:18 +02:00
parent cc8a4fcd5b
commit 348ece411a

View File

@ -593,3 +593,29 @@ or:
"msg": "session not found"
}
```
## Check if User has an Elopage Account
Check if logged in user has already an elopage account
### Request
`GET http://localhost/login_api/hasElopage?session_id=-127182`
### Response
In case of success returns:
```json
{
"state":"success",
"hasElopage": true
}
```
or:
```json
{
"state":"not found",
"msg": "session not found"
}
```