Skip to main content
POST
/
v1
/
datasources
/
test
Test Auth Connection
curl --request POST \
  --url https://api.oviond.com/v1/datasources/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "auth_id": "auth_abc123",
  "datasource_id": "google"
}
'
{
  "success": true,
  "data": {
    "connected": true,
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
auth_id
string
required
Minimum string length: 1
Example:

"auth_abc123"

datasource_id
string
required
Minimum string length: 1
Example:

"google"

Response

Connection test result

success
enum<boolean>
required
Available options:
true
data
object
required