SaaS Automation
  1. Cloudflare
SaaS Automation
Inbox Automation
  • Ping
  • Inbox Automation
  • Content Automation
  • Business Info
  • How to Set-up Domains on Google
  • How to Set-up Domains on Microsoft
  • Cloudflare
    • Adding Domain
      POST
    • Adding DNS Record
      POST
    • Domain Forwarding
      POST
    • Saving Credentials
      POST
    • Fetching Credentials
      GET
  • Microsoft
    • Adding Domain
      POST
    • Adding User
      POST
    • Saving Credentials
      POST
    • Fetching Credentials
      GET
  • Google
    • Adding User
      POST
    • Adding Domain
      POST
    • Saving Credentials
      POST
    • Fetching Credentials
      GET
  1. Cloudflare

Adding DNS Record

POST
https://api.saasautomation.link/inbox/cloudflare/dns

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Body Params application/json
data
object 
required
Domains
string 
required
content
string 
required
name
string 
required
type
string 
required
ttl
string 
required
cloudflare
object 
required
Example
{
  "data": {
    "Domains": "example.com",
    "content": "contentOfRecord",
    "name": "www",
    "type": "A",
    "ttl": "3600",
    "cloudflare": {
      "cloudflareApiKey": "authKey",
      "cloudflareAuthEmail": "[email protected]",
      "accountID": "cloudflareAccountID"
    }
  }
}

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/cloudflare/dns' \
--header 'Content-Type: application/json' \
--header 'x-api-key;' \
--data-raw '{
   "data":{
      "Domains":"example.com",
      "content":"contentOfRecord",
      "name":"www",
      "type":"A",
      "ttl":"3600",
      "cloudflare":{
            "cloudflareApiKey":"authKey",
            "cloudflareAuthEmail":"[email protected]",
            "accountID":"cloudflareAccountID"
      }
  }
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Previous
Adding Domain
Next
Domain Forwarding
Built with