forked from LiveCarta/PayPal-PHP-Server-SDK
* Automated commit message * Automated commit message --------- Co-authored-by: PayPalServerSDKs <server-sdks@paypal.com>
257 lines
9.7 KiB
Markdown
257 lines
9.7 KiB
Markdown
# Vault
|
|
|
|
Use the `/vault` resource to create, retrieve, and delete payment and setup tokens.
|
|
|
|
```php
|
|
$vaultController = $client->getVaultController();
|
|
```
|
|
|
|
## Class Name
|
|
|
|
`VaultController`
|
|
|
|
## Methods
|
|
|
|
* [Payment-Tokens Create](../../doc/controllers/vault.md#payment-tokens-create)
|
|
* [Customer Payment-Tokens Get](../../doc/controllers/vault.md#customer-payment-tokens-get)
|
|
* [Payment-Tokens Get](../../doc/controllers/vault.md#payment-tokens-get)
|
|
* [Payment-Tokens Delete](../../doc/controllers/vault.md#payment-tokens-delete)
|
|
* [Setup-Tokens Create](../../doc/controllers/vault.md#setup-tokens-create)
|
|
* [Setup-Tokens Get](../../doc/controllers/vault.md#setup-tokens-get)
|
|
|
|
|
|
# Payment-Tokens Create
|
|
|
|
Creates a Payment Token from the given payment source and adds it to the Vault of the associated customer.
|
|
|
|
```php
|
|
function paymentTokensCreate(array $options): ApiResponse
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Tags | Description |
|
|
| --- | --- | --- | --- |
|
|
| `paypalRequestId` | `string` | Header, Required | The server stores keys for 3 hours. |
|
|
| `body` | [`PaymentTokenRequest`](../../doc/models/payment-token-request.md) | Body, Required | Payment Token creation with a financial instrument and an optional customer_id. |
|
|
|
|
## Response Type
|
|
|
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`PaymentTokenResponse`](../../doc/models/payment-token-response.md).
|
|
|
|
## Example Usage
|
|
|
|
```php
|
|
$collect = [
|
|
'paypalRequestId' => 'PayPal-Request-Id6',
|
|
'body' => PaymentTokenRequestBuilder::init(
|
|
PaymentTokenRequestPaymentSourceBuilder::init()->build()
|
|
)->build()
|
|
];
|
|
|
|
$apiResponse = $vaultController->paymentTokensCreate($collect);
|
|
```
|
|
|
|
## Errors
|
|
|
|
| HTTP Status Code | Error Description | Exception Class |
|
|
| --- | --- | --- |
|
|
| 400 | Request is not well-formed, syntactically incorrect, or violates schema. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 403 | Authorization failed due to insufficient permissions. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 404 | Request contains reference to resources that do not exist. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 422 | The requested action could not be performed, semantically incorrect, or failed business validation. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 500 | An internal server error has occurred. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
|
|
|
|
# Customer Payment-Tokens Get
|
|
|
|
Returns all payment tokens for a customer.
|
|
|
|
```php
|
|
function customerPaymentTokensGet(array $options): ApiResponse
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Tags | Description |
|
|
| --- | --- | --- | --- |
|
|
| `customerId` | `string` | Query, Required | A unique identifier representing a specific customer in merchant's/partner's system or records.<br>**Constraints**: *Minimum Length*: `7`, *Maximum Length*: `36`, *Pattern*: `^[0-9a-zA-Z_-]+$` |
|
|
| `pageSize` | `?int` | Query, Optional | A non-negative, non-zero integer indicating the maximum number of results to return at one time.<br>**Default**: `5`<br>**Constraints**: `>= 1` |
|
|
| `page` | `?int` | Query, Optional | A non-negative, non-zero integer representing the page of the results.<br>**Default**: `1`<br>**Constraints**: `>= 1` |
|
|
| `totalRequired` | `?bool` | Query, Optional | A boolean indicating total number of items (total_items) and pages (total_pages) are expected to be returned in the response.<br>**Default**: `false` |
|
|
|
|
## Response Type
|
|
|
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`CustomerVaultPaymentTokensResponse`](../../doc/models/customer-vault-payment-tokens-response.md).
|
|
|
|
## Example Usage
|
|
|
|
```php
|
|
$collect = [
|
|
'customerId' => 'customer_id8',
|
|
'pageSize' => 5,
|
|
'page' => 1,
|
|
'totalRequired' => false
|
|
];
|
|
|
|
$apiResponse = $vaultController->customerPaymentTokensGet($collect);
|
|
```
|
|
|
|
## Errors
|
|
|
|
| HTTP Status Code | Error Description | Exception Class |
|
|
| --- | --- | --- |
|
|
| 400 | Request is not well-formed, syntactically incorrect, or violates schema. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 403 | Authorization failed due to insufficient permissions. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 500 | An internal server error has occurred. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
|
|
|
|
# Payment-Tokens Get
|
|
|
|
Returns a readable representation of vaulted payment source associated with the payment token id.
|
|
|
|
```php
|
|
function paymentTokensGet(string $id): ApiResponse
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Tags | Description |
|
|
| --- | --- | --- | --- |
|
|
| `id` | `string` | Template, Required | ID of the payment token.<br>**Constraints**: *Maximum Length*: `36`, *Pattern*: `^[0-9a-zA-Z_-]+$` |
|
|
|
|
## Response Type
|
|
|
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`PaymentTokenResponse`](../../doc/models/payment-token-response.md).
|
|
|
|
## Example Usage
|
|
|
|
```php
|
|
$id = 'id0';
|
|
|
|
$apiResponse = $vaultController->paymentTokensGet($id);
|
|
```
|
|
|
|
## Errors
|
|
|
|
| HTTP Status Code | Error Description | Exception Class |
|
|
| --- | --- | --- |
|
|
| 403 | Authorization failed due to insufficient permissions. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 404 | The specified resource does not exist. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 422 | The requested action could not be performed, semantically incorrect, or failed business validation. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 500 | An internal server error has occurred. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
|
|
|
|
# Payment-Tokens Delete
|
|
|
|
Delete the payment token associated with the payment token id.
|
|
|
|
```php
|
|
function paymentTokensDelete(string $id): ApiResponse
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Tags | Description |
|
|
| --- | --- | --- | --- |
|
|
| `id` | `string` | Template, Required | ID of the payment token.<br>**Constraints**: *Maximum Length*: `36`, *Pattern*: `^[0-9a-zA-Z_-]+$` |
|
|
|
|
## Response Type
|
|
|
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance.
|
|
|
|
## Example Usage
|
|
|
|
```php
|
|
$id = 'id0';
|
|
|
|
$apiResponse = $vaultController->paymentTokensDelete($id);
|
|
```
|
|
|
|
## Errors
|
|
|
|
| HTTP Status Code | Error Description | Exception Class |
|
|
| --- | --- | --- |
|
|
| 400 | Request is not well-formed, syntactically incorrect, or violates schema. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 403 | Authorization failed due to insufficient permissions. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 500 | An internal server error has occurred. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
|
|
|
|
# Setup-Tokens Create
|
|
|
|
Creates a Setup Token from the given payment source and adds it to the Vault of the associated customer.
|
|
|
|
```php
|
|
function setupTokensCreate(array $options): ApiResponse
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Tags | Description |
|
|
| --- | --- | --- | --- |
|
|
| `paypalRequestId` | `string` | Header, Required | The server stores keys for 3 hours. |
|
|
| `body` | [`SetupTokenRequest`](../../doc/models/setup-token-request.md) | Body, Required | Setup Token creation with a instrument type optional financial instrument details and customer_id. |
|
|
|
|
## Response Type
|
|
|
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`SetupTokenResponse`](../../doc/models/setup-token-response.md).
|
|
|
|
## Example Usage
|
|
|
|
```php
|
|
$collect = [
|
|
'paypalRequestId' => 'PayPal-Request-Id6',
|
|
'body' => SetupTokenRequestBuilder::init(
|
|
SetupTokenRequestPaymentSourceBuilder::init()->build()
|
|
)->build()
|
|
];
|
|
|
|
$apiResponse = $vaultController->setupTokensCreate($collect);
|
|
```
|
|
|
|
## Errors
|
|
|
|
| HTTP Status Code | Error Description | Exception Class |
|
|
| --- | --- | --- |
|
|
| 400 | Request is not well-formed, syntactically incorrect, or violates schema. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 403 | Authorization failed due to insufficient permissions. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 422 | The requested action could not be performed, semantically incorrect, or failed business validation. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 500 | An internal server error has occurred. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
|
|
|
|
# Setup-Tokens Get
|
|
|
|
Returns a readable representation of temporarily vaulted payment source associated with the setup token id.
|
|
|
|
```php
|
|
function setupTokensGet(string $id): ApiResponse
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Tags | Description |
|
|
| --- | --- | --- | --- |
|
|
| `id` | `string` | Template, Required | ID of the setup token.<br>**Constraints**: *Minimum Length*: `7`, *Maximum Length*: `36`, *Pattern*: `^[0-9a-zA-Z_-]+$` |
|
|
|
|
## Response Type
|
|
|
|
This method returns a `PaypalServerSdkLib\Utils\ApiResponse` instance. The `getResult()` method on this instance returns the response data which is of type [`SetupTokenResponse`](../../doc/models/setup-token-response.md).
|
|
|
|
## Example Usage
|
|
|
|
```php
|
|
$id = 'id0';
|
|
|
|
$apiResponse = $vaultController->setupTokensGet($id);
|
|
```
|
|
|
|
## Errors
|
|
|
|
| HTTP Status Code | Error Description | Exception Class |
|
|
| --- | --- | --- |
|
|
| 403 | Authorization failed due to insufficient permissions. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 404 | The specified resource does not exist. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 422 | The requested action could not be performed, semantically incorrect, or failed business validation. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
| 500 | An internal server error has occurred. | [`ErrorException`](../../doc/models/error-exception.md) |
|
|
|