Create Agent Connection

post

http://{host}:{port}/veridata/v1/services/configuration/connections

Required Role: Administrator, SuperUser, CommandLineOperator

Create Agent Connection.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Example:
{ "name":"Oracle-Connection-Source", "description":"Connection to source Oracle database", "host":"100.00.00.00", "port":"7850", "dbType":"ORACLE", "ssl":"false", "username":"User", "password":"Abc@123" }
Back to Top

Response

Supported Media Types

201 Response

Agent connection created successfully.
Body ()
Root Schema : BaseConnection
Type: object
Show Source
Example:
{ "createdOn":"2025-04-02T11:20:51.269Z", "description":"Connection to source Oracle database", "host":"100.00.00.00", "id":1090, "name":"Oracle-Connection-Source", "port":7800 }

400 Response

Bad Request.
Body ()
Root Schema : Error
Type: object
Show Source
Example:
{ "errCode":"OGGV-00001", "errMsg":"Error message" }

401 Response

Unauthorized.
Body ()
Root Schema : Error
Type: object
Show Source
Example:
{ "errCode":"OGGV-00001", "errMsg":"Error message" }

404 Response

Not Found.
Body ()
Root Schema : Error
Type: object
Show Source
Example:
{ "errCode":"OGGV-00001", "errMsg":"Error message" }

500 Response

Server Error.
Body ()
Root Schema : Error
Type: object
Show Source
Example:
{ "errCode":"OGGV-00001", "errMsg":"Error message" }
Back to Top