Skip to content

Latest commit

 

History

History
65 lines (59 loc) · 4.75 KB

get-connection-information.md

File metadata and controls

65 lines (59 loc) · 4.75 KB

Get Account Connection Information

Description

Information about an existing connection. Xplenty provides the following types of connections:

Input Parameters

The connection type and connection ID must be supplied at the end of the request URL.

Request (Curl Call) Syntax

$ curl -X GET -u api_key: "https://api.xplenty.com/:account_id/api/connections/:type/:id" \
  -H "Accept: application/vnd.xplenty+json; version=2"

Response Example

HTTP/1.1 200 OK
{
  "id":53,
  "name":"Amazon S3 sample connection",
  "username": "johndoe",
  "unique_id":"S3_CONNECTION_53",
  "created_at":"2016-04-21T13:55:43Z",
  "updated_at":"2016-04-21T13:55:43Z",
  "type":"s3",
  "url":"https://api.xplenty.com/xplenation/api/connections/s3/53"
}