- How to Set-up Domains on Google
- How to Set-up Domains on Microsoft
- Cloudflare
- Microsoft
- Google
Adding User
POST
https://api.saasautomation.link/inbox/google/user
Request
Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Body Params application/json
data
object
required
domains
string
required
name
string
required
firstname
string
required
lastname
string
required
password
string
required
google
object
required
Example
{
"data": {
"domains": "example.com",
"name": "pp",
"firstname": "prasad",
"lastname": "priyadarshan",
"password": "password@123",
"google": {
"adminEmail": "[email protected]",
"customerID": "908234MKOPICR0I934C"
}
}
}
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 'https://api.saasautomation.link/inbox/google/user' \
--header 'Content-Type: application/json' \
--header 'x-api-key;' \
--data-raw '{
"data":{
"domains":"example.com",
"name":"pp",
"firstname":"prasad",
"lastname":"priyadarshan",
"password":"password@123",
"google": {
"adminEmail":"[email protected]",
"customerID":"908234MKOPICR0I934C"
}
}
}'
Responses
🟢200Success
application/json
Body
object {0}
Example
{}