PUT authenticate

Request Information

URI Parameters

None.

Body Parameters

Dictionary of string [key] and string [value]

Request Formats

application/json, text/json

Sample:
{
  "sample string 1": "sample string 2",
  "sample string 3": "sample string 4"
}

application/xml, text/xml

Sample:
<ArrayOfKeyValueOfstringstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <KeyValueOfstringstring>
    <Key>sample string 1</Key>
    <Value>sample string 2</Value>
  </KeyValueOfstringstring>
  <KeyValueOfstringstring>
    <Key>sample string 3</Key>
    <Value>sample string 4</Value>
  </KeyValueOfstringstring>
</ArrayOfKeyValueOfstringstring>

Response Information

Resource Description

User
NameDescriptionTypeAdditional information
GroupId

globally unique identifier

None.

RemoteId

string

None.

KeyPair

ClientHmacKeyPair

None.

Response Formats

application/json, text/json

Sample:
{
  "GroupId": "8479ecc1-6d5e-4680-a969-108a06240090",
  "RemoteId": "sample string 2",
  "KeyPair": {
    "AccessKey": "sample string 1",
    "SecretKey": "QEA="
  }
}

application/xml, text/xml

Sample:
<User xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Pay.Platform.Models">
  <GroupId>8479ecc1-6d5e-4680-a969-108a06240090</GroupId>
  <KeyPair xmlns:d2p1="http://schemas.datacontract.org/2004/07/Pay.Platform.HMAC.Client">
    <d2p1:AccessKey>sample string 1</d2p1:AccessKey>
    <d2p1:SecretKey>QEA=</d2p1:SecretKey>
  </KeyPair>
  <RemoteId>sample string 2</RemoteId>
</User>