POST api/ActivationMethods
Used to retrieve the available Activation Methods for a token that is awaiting activation. Activation Methods are the means by which a cardholder may complete cardholder authentication with the issuer beyond the scope of MDES. It is possible that there are no Activation Methods for a token when an issuer did not provide any cardholder-specific information with the Tokenization Authorization Request (TAR) pre-digitization network message response.
Request Information
URI Parameters
None.
Body Parameters
TransactionsRequest
ActivationMethodsRequest| Name | Description | Type | Additional information | 
|---|---|---|---|
| TokenUniqueReference | 
                         The TokenUniqueReference of the token. Length - 48 Characters Example: DWSPMC00000000010906a349d9ca4eb1a4d53e3c90a11d9c  | 
                    string | 
                                 Required  | 
                
| AuditInfo | 
                         Audit Info - See AuditInfo Object Documentation  | 
                    AuditInfo | 
                                 Required  | 
                
Request Formats
application/json, text/json
{
  "tokenUniqueReference": "sample string 1",
  "auditInfo": {
    "userId": "sample string 1",
    "userName": "sample string 2",
    "organization": "sample string 3",
    "phone": "sample string 4"
  }
}
        application/xml, text/xml
<ActivationMethodsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDES.CustomerService.Models">
  <AuditInfo>
    <Organization>sample string 3</Organization>
    <Phone>sample string 4</Phone>
    <UserId>sample string 1</UserId>
    <UserName>sample string 2</UserName>
  </AuditInfo>
  <TokenUniqueReference>sample string 1</TokenUniqueReference>
</ActivationMethodsRequest>
        application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
TransactionsResponse
ActivationMethodsResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| ActivationMethods | 
                         Collection of ActivationMethod Objects  | 
                    Collection of ActivationMethod | 
                             None.  | 
                
Response Formats
application/json, text/json
{
  "activationMethods": [
    {
      "activationMethodType": "sample string 1",
      "activationMethodValue": "sample string 2",
      "activationMethodId": "sample string 3",
      "resendIndicator": "sample string 4"
    },
    {
      "activationMethodType": "sample string 1",
      "activationMethodValue": "sample string 2",
      "activationMethodId": "sample string 3",
      "resendIndicator": "sample string 4"
    }
  ]
}
        application/xml, text/xml
<ActivationMethodsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDES.CustomerService.Models">
  <ActivationMethods>
    <ActivationMethod>
      <ActivationMethodId>sample string 3</ActivationMethodId>
      <ActivationMethodType>sample string 1</ActivationMethodType>
      <ActivationMethodValue>sample string 2</ActivationMethodValue>
      <ResendIndicator>sample string 4</ResendIndicator>
    </ActivationMethod>
    <ActivationMethod>
      <ActivationMethodId>sample string 3</ActivationMethodId>
      <ActivationMethodType>sample string 1</ActivationMethodType>
      <ActivationMethodValue>sample string 2</ActivationMethodValue>
      <ResendIndicator>sample string 4</ResendIndicator>
    </ActivationMethod>
  </ActivationMethods>
</ActivationMethodsResponse>