REST Example: Google Pay Authorization {#googpay-pay-auth-ex-rest}
==================================================================

Request

```keyword
{
  "processingInformation": {
    "paymentSolution": "012"
  },
  "paymentInformation": {
    "fluidData": {
      "value": "ABCDEFabcdefABCDEFabcdef0987654321234567"
    }
  },
  "orderInformation": {
    "amountDetails": {
      "totalAmount": "102.21",
      "currency": "USD"
    },
    "billTo": {
      "firstName": "John",
      "lastName": "Doe",
      "address1": "123 Happy Street",
      "locality": "Ann Arbor",
      "administrativeArea": "MI",
      "postalCode": "48104-2201",
      "country": "US",
      "email": "test@cybs.com"
    }
  }
}          
```

Response for a Successful Request

```
{
  "_links": {
    "authReversal": {
      "method": "POST",
      "href": "/pts/v2/payments/6805343125426255503955/reversals"
    },
    "self": {
      "method": "GET",
      "href": "/pts/v2/payments/6805343125426255503955"
    },
    "capture": {
      "method": "POST",
      "href": "/pts/v2/payments/6805343125426255503955/captures"
    }
  },
  "clientReferenceInformation": {
    "code": "TC50171_3"
  },
  "id": "6805343125426255503955",
  "orderInformation": {
    "amountDetails": {
      "authorizedAmount": "102.21",
      "currency": "USD"
    }
  },
  "paymentAccountInformation": {
    "card": {
      "type": "001"
    }
  },
  "paymentInformation": {
    "tokenizedCard": {
      "type": "001"
    },
    "card": {
      "type": "001"
    }
  },
  "pointOfSaleInformation": {
    "terminalId": "111111"
  },
  "processorInformation": {
    "approvalCode": "888888",
    "networkTransactionId": "123456789619999",
    "transactionId": "123456789619999",
    "responseCode": "100",
    "avs": {
      "code": "X",
      "codeRaw": "I1"
    }
  },
  "reconciliationId": "65301815QFTXZAN6",
  "status": "AUTHORIZED",
  "submitTimeUtc": "2023-04-03T15:05:12Z"
}
```

