For the complete documentation index, see llms.txt. This page is also available as Markdown.

View Callback

The View Callback method is designed for you to view your current callback without having to change the value.

View Callback

POST https://dcams.app/v3/stable/callback/view

This endpoint allows you to view your current callback URL.

Request Body

Name
Type
Description

user

string

Your Veratad API Username

pass

string

Your Veratad API Password

{
    "result": "Success",
    "message": "Here is your current callback",
    "current_callback": "https://verataddev.com/callback"
}
{
    "result": "Error",
    "message": "Missing a required input",
    "callback": ""
}
{
    "result": "Error",
    "message": "Either your username or password is incorrect",
    "current_callback": ""
}

Request Body

{
	"user": "USERNAME",
	"pass": "PASSWORD"
}

Last updated