- Documentation
- API Reference
- Projects
- importer.vidinfra.com
- Auth
- User RegistrationPOST
- User LoginPOST
- Verify-emailGET
- Forgot PasswordPOST
- Forgot Password Verify OTPPOST
- Forgot Password SetPOST
- Resend OTPPOST
- LogoutPOST
- Set Password POST
- Check Account existsPOST
- Update Password POST
- Google Oauth RedirectGET
- Google Oauth CallbackGET
- api-access-checkGET
- New Auth token using Refresh tokenPOST
- Github Oauth RedirectGET
- Google Oauth Callback CopyGET
- Get User SessionsGET
- Delete User SessionsDELETE
- User
- Organization
- Organization's invitations
- Audits
- Members
- API Keys
- Folders
- Videos
- Video Metas
- Video Captions
- Video Chapter
- Uploads
- Tags
- Players
- Webhook Endpoints
- Advertisements
- Webhook Event Logs
- Analytics Direct Api
- geo-distribution
- Project Views
- avg video watch
- Total watch Time
- Project Avg Watch per Unique user
- Total Player Error
- project popularity-analysis
- Project Collection Insights
- Collection Views
- Collection avg Watch time
- Collection Avg Watch per unique user
- Collection Geo Distribution
- Get all Users
- User media views
- User Avg video watch
- user Player log
- user sessions
- Get all Video
- video Player error
- Video View
- video Geo Distribution
- video Avg watch
- copy
- Streams
- Stream Metas
- Usages
- Encoding profile
- Project Matrics
- Access Control
- Analytics
- Project Get geo-distribution
- project views
- Project avg video watch
- Project Total Watch
- Project Avg Watch per Unique user
- Project All Player Errors
- Project Popularity Analysis
- Project Collections insights
- Collection Geo Distribution
- Collection avg watch time
- Collection avg watch per unique User
- Collection Player error
- Video Geo Distribution
- Video views
- Video Avg Watch
- Video Player Log
- User
- User Avg Video Watch
- User Total Watch
- User player error log
- Plan
- Upload Tokens
- subscribe
- Transaction
- Invoice
- vimeo video importer
- test
- transcoding service
- transcoding service v2
- Welcome to vidinfraGET
- health checkGET
- Regions ListGET
- keyPOST
- Untitled EndpointGET
Check Account exists
Developing
POST
/auth/check-account-exists
Check if the Account exist#
{
'identifier' : 'skshahra@gmail.com'
}
/v1/auth/check-account-exists
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
first_name
stringÂ
required
last_name
stringÂ
required
email
stringÂ
required
password
stringÂ
required
company_name
stringÂ
required
type
stringÂ
required
country
stringÂ
required
accept_terms_and_conditions
booleanÂ
required
Example
{
"identifier": "skshahra@gmail.com"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:8080/v1/auth/check-account-exists' \
--header 'Content-Type: application/json' \
--data-raw '{
"identifier": "skshahra@gmail.com"
}'
Responses
🟠400Bad Request
application/json
Body
object {0}
Examples
{"message":"Unable to register. Please try again later.","success":false,"details":"the email address is already in use"}
🟢200OK