POST api/Test/VerifyAccountInfo

Use this method to test your authentication to the API

Request Information

URI Parameters

None.

Body Parameters

VerifyAccountInfoRequestModel
NameDescriptionTypeAdditional information
UserId

The UserId making the request. Value is a SouthData client number

string

None.

AuthToken

The AuthToken required to validate the request. Must be unique for each and every request. See documentation on how to generate an auth token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "AuthToken": "sample string 2"
}

application/xml, text/xml

Sample:
<VerifyAccountInfoRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SouthDataAPI.Models">
  <AuthToken>sample string 2</AuthToken>
  <UserId>sample string 1</UserId>
</VerifyAccountInfoRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

multipart/form-data

Sample:

Sample not available.

application/octet-stream

Sample:

Sample not available.

Response Information

Resource Description

Response model confirming whether authentication was successful

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.