Skip to main content

Server Connection Endpoints

Server Connections Endpoints and Parameters

To learn more about the objects relations and how to use them in the API, go to the Objects Relations section.

For more information about data connections, visit the Data Connections help page.

Retrieve All Data Connection Records

To get information about all server data connection records, use the GET {baseURL}/v3/serverDataConnections endpoint.

Parameters

  • view (string): Optional. Can be left without a value. You can choose from the following values: ‘Default’ and ‘Full’. If this parameter is set to 'Default’, then a reduced view object will be returned. When not specified, the ‘Default’ value is used.

Request Example: cURL

curl --location --request GET 'http://localhost/webapi/v3/serverDataConnections' \ --header 'Authorization: Bearer BearerTokenGoesHere'

Retrieve a Specific Data Connection Record

To retrieve information about a specific server data connection, use the GET {baseURL}/v3/serverDataConnections /{dataConnectionId} endpoint.

Parameters

  • dataConnectionId (string): Required. Enter a server data connection ID to get the information about a specific data connection.

Request Example: cURL

curl --location --request GET 'http://localhost/webapi/v3/serverDataConnections/61dec3bc536c221013530fa' \ --header 'Authorization: Bearer BearerTokenGoesHere'

Update an Existing Data Connection

To change the name of a data connection, use the PUT {baseURL}/v3/serverDataConnections/{dataConnectionId} endpoint.

Parameters

  • dataConnectionId (string): Required. Enter a server data connection ID to specify the data connection you want to update.

  • updateServerConnectionContract (body): Required. Enter new name for a data connection:

    • name (string): Required. Enter the new name of the data connection.

Request Example: cURL

curl --location --request PUT 'http://localhost/webapi/v3/serverDataConnections/61dec3bc5436c21013530fa' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer BearerTokenGoesHere' \ --data-urlencode 'name=Oracle DB Connection'

Add a User to a Data Connection

To add a user to a server data connection, use the POST {baseURL}/v3/serverDataConnections/{dataConnectionId}/users endpoint.

Parameters

  • dataConnectionId (string): Required. Enter a server data connection ID to specify the data connection to add a user to.

  • contract (body): Required. Enter an information about the user you want to add to a data connection:

    • userId (string): Required. Specify the ID of a user you want to add to a data connection.

Request Example: cURL

curl --location --request POST 'http://localhost/webapi/v3/serverDataConnections/61dec3bc5436c221013530fa/users' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer BearerTokenGoesHere' \ --data-urlencode 'userId=61dec95f5436c22101353193'

Add a User Group to a Data Connection

To add a user group to a server data connection, use the POST {baseURL}/v3/serverDataConnections/{dataConnectionId}/userGroups endpoint.

Parameters

  • dataConnectionId (string): Required. Enter a server data connection ID to specify the data connection to add a user group to.

  • contract (body): Required. Enter an information about the user group you want to add to a data connection:

    • userGroupId (string): Required. Specify the ID of a user group you want to add to a data connection.

Request Example: cURL

curl --location --request POST 'http://localhost/webapi/v3/serverDataConnections/61dec3bc5436c221013530fa/userGroups' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer BearerTokenGoesHere' \ --data-urlencode 'userGroupId=61decb225436c2210135336f'

Remove a User from a Data Connection

To remove a user from a server data connection, use the DELETE {baseURL}/v3/serverDataConnections/{dataConnectionId}/users/{userId} endpoint.

Parameters

  • dataConnectionId (string): Required. Enter a server data connection ID to specify the data connection you want to update.

  • userId (string): Required. Enter a user ID you want to remove from the data connection.

Request Example: cURL

curl --location --request DELETE 'http://localhost/webapi/v3/serverDataConnections/61dec3bc5436c221013530fa/users/61dec95f5436c22101353193' \ --header 'Authorization: Bearer BearerTokenGoesHere'

Remove a User Group from a Data Connection

To remove a user group from a server data connection, use the DELETE {baseURL}/v3/serverDataConnections/{dataConnectionId}/userGroups/{userGroupId} endpoint.

Parameters

  • dataConnectionId (string): Required. Enter a server data connection ID to specify the data connection you want to update.

  • userGroupId (string): Required. Enter a user group ID you want to remove from the data connection.

Request Example: cURL

curl --location --request DELETE 'http://localhost/webapi/v3/serverDataConnections/61dec3bc5436c221013530fa/userGroups/61decb225436c2210135336f' \ --header 'Authorization: Bearer BearerTokenGoesHere'

Delete a Data Connection

To delete a specific server data connection, use the DELETE {baseURL}/v3/serverDataConnections/{dataConnectionId} endpoint.

Parameters

  • dataConnectionId (string): Required. Enter a server data connection ID to specify the data connection you want to delete.

Request Example: cURL

curl --location --request DELETE 'http://localhost/webapi/v3/serverDataConnections/61dec3bc5436c221013530fa' \ --header 'Authorization: Bearer BearerTokenGoesHere'

Objects Relations

There are no references for Server data connections for now. The benefit of having the data connections modifiable is you are able to assign or unassign access to them. This helps with onboarding to certain permissions to data sources.

Postman Request Examples

GET /v3/serverDataConnections

Use the GET /v3/serverDataConnections endpoint.

PUT /v3/serverDataConnections/{dataConnectionId}

Use the PUT /v3/serverDataConnections/{dataConnectionId} endpoint.

To know more about Postman requests, visit the How to Use Postman help page.