v1

latestOpenAPI 3.0.0Apache 2.02026-08-063010285.3 KB
Account

Link an API account to you Connected Vehicle account

Associate a Stellantis API Account to an existing Jeep, Maserati, Ram, Chrysler, Dodge Connect, Sirius XM Guardian, or Mopar.com connected vehicle account. One API account can be linked to many connected vehicle accounts. Connected vehicle account credentials must be valid and cannot be managed with this API. Your connected vehicle account must be enrolled and have eligible VINs. If subscriptions on an existing VIN are added to or removed from a connected vehicle account, call this API to refresh the linked account.

post/v1/account/link

Request body

connected_account_emailstring required
connected_account_passwordstring required

Example request

{
  "connected_account_email": "your_connected_account_email@domain.com",
  "connected_account_password": "your_connected_account_password"
}

Response

AccountLinkResponse

resultstring
connected_account_emailstring
vinsobject[]

Example response

{
  "result": "Account Link Success",
  "connected_account_email": "your_connected_account_email@domain.com",
  "vins": [
    {
      "3D7UT2CL0BG625027": {
        "nickname": "nickname",
        "uid": "EXAMPLE_UID",
        "sdp": "IGNITE"
      }
    }
  ]
}