GET
/
links
/
{id}
curl --request GET \
  --url http://localhost:8080/links/{id} \
  --header 'Authorization: Bearer <token>'
{
  "link_id": "mk_eqkWN34UEoa2NxyALG8pcV",
  "institution_id": "chase",
  "institution_name": "Chase",
  "state": "connected",
  "error_code": "system_error",
  "last_synced_at": "2023-02-16T09:14:11",
  "tags": [
    "smoke_test",
    "user_type:admin"
  ],
  "products": {
    "accounts": {
      "refreshed_at": "2023-02-16T09:14:11",
      "last_attempted_at": "2023-02-16T09:14:11"
    },
    "account_numbers": {
      "refreshed_at": "2023-02-16T09:14:11",
      "last_attempted_at": "2023-02-16T09:14:11",
      "settings": {
        "required": false,
        "prefetch": false,
        "product": "accounts"
      }
    },
    "identity": {
      "refreshed_at": "2023-02-16T09:14:11",
      "last_attempted_at": "2023-02-16T09:14:11",
      "settings": {
        "required": false,
        "prefetch": false,
        "product": "accounts"
      }
    },
    "transactions": {
      "refreshed_at": "2023-02-16T09:14:11",
      "last_attempted_at": "2023-02-16T09:14:11",
      "settings": {
        "required": false,
        "prefetch": false,
        "product": "accounts",
        "extend_history": false
      }
    },
    "investments": {
      "refreshed_at": "2023-02-16T09:14:11",
      "last_attempted_at": "2023-02-16T09:14:11",
      "settings": {
        "required": false,
        "prefetch": false,
        "product": "accounts"
      }
    }
  },
  "provider": "mx",
  "webhook": "https://example.com/webhook"
}
curl -i -X GET \
  'http://localhost:8080/links/{id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'moneykit-version: 2023-02-18'
{
  "link_id": "mk_eqkWN34UEoa2NxyALG8pcV",
  "institution_id": "chase",
  "provider": "mx",
  "state": "connected"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

moneykit-version
string
default:2023-02-18

Path Parameters

id
string
required

The unique ID for this link.

Response

200
application/json

Link details.

The response is of type object.