POST api/Link

Use this method to authorize a link between a user and your service, allowing your service to post data on their behalf.

Request Information

URI Parameters

None.

Body Parameters

The Authorization Code provided by the user and the App Id supplied by your service.

Link
NameDescriptionTypeAdditional information
AuthorizationCode

The Authorization Code the user supplies to the provider authorizing them to post transactional information on their behalf. The user generates this code from the main website, not through the API.

globally unique identifier

Required

AppId

The App Id supplied by the provider. This must match an app that belongs to the account that is used to get an authorization token.

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "authorizationCode": "1f9c056e-6ec4-485d-aca2-2cb66bf248ac",
  "appId": "1711a84b-7bf0-4ba0-ac2f-83c0bb9deb91"
}

application/xml, text/xml

Sample:
<Link xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TScunts.Models.API">
  <AppId>1711a84b-7bf0-4ba0-ac2f-83c0bb9deb91</AppId>
  <AuthorizationCode>1f9c056e-6ec4-485d-aca2-2cb66bf248ac</AuthorizationCode>
</Link>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The link created, if successful

Link
NameDescriptionTypeAdditional information
AuthorizationCode

The Authorization Code the user supplies to the provider authorizing them to post transactional information on their behalf. The user generates this code from the main website, not through the API.

globally unique identifier

Required

AppId

The App Id supplied by the provider. This must match an app that belongs to the account that is used to get an authorization token.

globally unique identifier

Required

Response Formats

application/json, text/json

Sample:
{
  "authorizationCode": "161606e3-27cf-4889-8914-5e04d49ba986",
  "appId": "93584382-4f8d-4a80-99fb-486650782652"
}

application/xml, text/xml

Sample:
<Link xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TScunts.Models.API">
  <AppId>93584382-4f8d-4a80-99fb-486650782652</AppId>
  <AuthorizationCode>161606e3-27cf-4889-8914-5e04d49ba986</AuthorizationCode>
</Link>