On This Page

{#jumplink-list}  
[Markdown](/docs/cybs/en-us/payments/developer/vantivcnp/so/payments/payments-processing-basic-intro/pnt-auth-intro.md)  
Filter  
FILTER BY TAG

Authorization with Payment Network Tokens {#pnt-auth-intro}
===========================================================

This section shows you how to successfully process an authorization with payment network tokens.

> Due to mandates from the Reserve Bank of India, merchants based in India cannot store personal account numbers (PAN). Use network tokens instead. For more information on network tokens, see the Network Tokenization section of the [` Token Management Service ` Guide.](https://developer.cybersource.com/docs.md#TokenManagementService "")

Endpoint {#pnt-auth-intro_d19e16}
---------------------------------

Set the ccAuthService_run field to `true`.  
Send the request to `https://ics2ws.ic3.com/commerce/1.x/transactionProcessor`.

Required Fields for Authorizations with Payment Network Tokens {#pnt-req-fields}
================================================================================

> When relaxed requirements for address data and the expiration date are being used, not all fields in this list are required. It is your responsibility to determine whether your account is enabled to use this feature and which fields are required. For details about relaxed requirements, see [Relaxed Requirements for Address Data and Expiration Date in Payment Transactions](/docs/cybs/en-us/payments/developer/vantivcnp/so/payments/payments-relax-reqs.md "").

billTo_email
:

billTo_firstName
:

billTo_lastName
:

billTo_street1
:

ccAuthService_networkTokenCryptogram
:

purchaseTotals_currency
:

purchaseTotals_grandTotalAmount
:

token_expirationMonth
:

token_expirationYear
:

Related Information {#pnt-req-fields_section_gbq_mvv_1yb}
---------------------------------------------------------

* [API field reference guide for the Simple Order API](https://developer.cybersource.com/docs/cybs/en-us/api-fields/reference/all/so/api-fields/api-fields-so-intro.md "")

Optional Fields for Authorizations with Payment Network Tokens {#pnt-optional-fields}
=====================================================================================

billTo_city
:

billTo_country
:

billTo_email
:

billTo_firstName
:

billTo_lastName
:

billTo_postalCode
:
Required only for transactions in the U.S. and Canada.

billTo_state
:
Required only for transactions in the U.S. and Canada.

billTo_street1
:

card_accountNumber
:
Set to the token value that you received from the token service provider.

card_cardType
:
It is strongly recommended that you send the card type even if it is optional for your processor. Omitting the card type can cause the transaction to be processed with the wrong card type.

card_expirationMonth
:
Set to the token expiration month that you received from the token service provider.

card_expirationYear
:
Set to the token expiration year that you received from the token service provider.

ccAuthService_cavv
:
For 3-D Secure in-app transactions for Visa and JCB, set to the 3-D Secure cryptogram. Otherwise, set to the network token cryptogram.

ccAuthService_commerceIndicator
:

ccAuthService_networkTokenCryptogram
:

ccAuthService_run
:
Set the value to `true`.

merchantID
:

merchantReferenceCode
:

purchaseTotals_currency
:

purchaseTotals_grandTotalAmount or item_#_unitPrice
:

paymentNetworkToken_transactionType
:

paymentNetworkToken_requestorID

ucaf_authenticationData
:
For Mastercard requests, set this field to the Identity Check cryptogram.

ucaf_collectionIndicator
:
For Mastercard requests, set the value to `2`.

Related Information
-------------------

* [API field reference guide for the Simple Order API](https://developer.cybersource.com/docs/cybs/en-us/api-fields/reference/all/so/api-fields/api-fields-so-intro.md "")
  {#pnt-optional-fields_ul_hbq_mvv_1yb}

Simple Order API Example: Authorizations with Payment Network Tokens {#pnt-ex-so}
=================================================================================

Request

```
&lt;requestMessage&gt;
    &lt;purchaseTotals&gt;
        &lt;currency&gt;USD&lt;/currency&gt;
        &lt;grandTotalAmount&gt;16.00&lt;/grandTotalAmount&gt;
    &lt;/purchaseTotals&gt;
    &lt;card&gt;
        &lt;accountNumber&gt;4111111111111111&lt;/accountNumber&gt;
        &lt;expirationMonth&gt;12&lt;/expirationMonth&gt;
        &lt;expirationYear&gt;2031&lt;/expirationYear&gt;
    &lt;/card&gt;
    &lt;ccAuthService run="true"&gt;
        &lt;networkTokenCryptogram&gt;qE5juRwDzAUFBAkEHuWW9PiBkWv=&lt;/networkTokenCryptogram&gt;
    &lt;/ccAuthService&gt;
    &lt;paymentNetworkToken&gt;
        &lt;transactionType&gt;1&lt;/transactionType&gt;
    &lt;/paymentNetworkToken&gt;
&lt;/requestMessage&gt;
```

Successful Response

```
&lt;c:replyMessage&gt;
    &lt;c:merchantReferenceCode&gt;Postman-1684858432&lt;/c:merchantReferenceCode&gt;
    &lt;c:requestID&gt;6848584316126969103007&lt;/c:requestID&gt;
    &lt;c:decision&gt;ACCEPT&lt;/c:decision&gt;
    &lt;c:reasonCode&gt;100&lt;/c:reasonCode&gt;
    &lt;c:purchaseTotals&gt;
        &lt;c:currency&gt;USD&lt;/c:currency&gt;
    &lt;/c:purchaseTotals&gt;
    &lt;c:ccAuthReply&gt;
        &lt;c:reasonCode&gt;100&lt;/c:reasonCode&gt;
        &lt;c:amount&gt;16.00&lt;/c:amount&gt;
        &lt;c:authorizationCode&gt;888888&lt;/c:authorizationCode&gt;
        &lt;c:avsCode&gt;X&lt;/c:avsCode&gt;
        &lt;c:avsCodeRaw&gt;I1&lt;/c:avsCodeRaw&gt;
        &lt;c:authorizedDateTime&gt;2023-05-23T16:13:51Z&lt;/c:authorizedDateTime&gt;
        &lt;c:processorResponse&gt;100&lt;/c:processorResponse&gt;
        &lt;c:reconciliationID&gt;78849228NHPFQCKD&lt;/c:reconciliationID&gt;
        &lt;c:paymentNetworkTransactionID&gt;123456789619999&lt;/c:paymentNetworkTransactionID&gt;
     &lt;/c:ccAuthReply&gt;
     &lt;c:card&gt;
         &lt;c:cardType&gt;001&lt;/c:cardType&gt;
     &lt;/c:card&gt;
&lt;/c:replyMessage&gt;
```

RELATED TO THIS PAGE

