DELETE api/Link

Use this method to delete the authorization for your service to send data on behalf of a user

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": "4056e261-8696-4d0e-a3c4-e30599a44183",
  "appId": "5f64a7df-57f7-4f92-a09e-b47334bb14de"
}

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>5f64a7df-57f7-4f92-a09e-b47334bb14de</AppId>
  <AuthorizationCode>4056e261-8696-4d0e-a3c4-e30599a44183</AuthorizationCode>
</Link>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The link delted, 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": "2d4ea667-e3f5-4366-9b5b-6a0a6e350d62",
  "appId": "5791b80c-1c18-47df-b477-80597d6c1c62"
}

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>5791b80c-1c18-47df-b477-80597d6c1c62</AppId>
  <AuthorizationCode>2d4ea667-e3f5-4366-9b5b-6a0a6e350d62</AuthorizationCode>
</Link>