# 1. Add

## Add Physical Card

<mark style="color:green;">`POST`</mark> `{{Base Address}}/api/paywall/card/production/physical/add`

Simply sending a request to the provided address above will suffice. You can use 'Base Address' as you wish for both the test environment and the production environment.

{% hint style="info" %}
**Important**: In order to use the 'Physical Card - Add' service, you need to send the '**apikeyprivate**' and '**apiclientprivate**' parameters in the 'Header' field.

\
[<mark style="color:green;">**PaymentAPI Address**</mark>](/payment-orchestration-integration-document/environment.md)
{% endhint %}

**The header information that needs to be sent to the service is as follows:**

<table><thead><tr><th width="191">Parameter</th><th width="106.33333333333331">Type</th><th width="143">Compulsory </th><th>Description</th></tr></thead><tbody><tr><td>apikeyprivate</td><td>string</td><td>Yes</td><td>The Private Key obtained from the merchant panel.</td></tr><tr><td>apiclientprivate</td><td>string</td><td>Yes</td><td>The Private Client obtained from the merchant panel.</td></tr></tbody></table>

**The parameters that need to be sent to the service are as follows:**

<table><thead><tr><th width="211">Parameter</th><th width="109">Type</th><th width="142">Compulsory </th><th>Description</th></tr></thead><tbody><tr><td>CardProductionKey</td><td>string</td><td>Yes</td><td>The provider key information to which the card will be added and linked to your account.</td></tr><tr><td>Number</td><td>string</td><td>Yes</td><td>The number of the card.</td></tr><tr><td>ExpireMonth</td><td>string</td><td>Yes</td><td>The expiration month of the card (Example: 09).</td></tr><tr><td>ExpireYear</td><td>string</td><td>Yes</td><td>The expiration year of the card (Example: 25).</td></tr><tr><td>Cvv</td><td>string</td><td>Yes</td><td>The security code of the card (Example: 333).</td></tr><tr><td>Description</td><td>string</td><td>Yes</td><td>The person or description to which the card will be associated.</td></tr><tr><td>Phone</td><td>string</td><td>Yes</td><td>The phone number to which the card will be associated.</td></tr><tr><td>ExternalId</td><td>string</td><td>No</td><td>The identity information of the card in your system.</td></tr></tbody></table>

{% tabs %}
{% tab title="JSON" %}
{% code overflow="wrap" lineNumbers="true" %}

```json5
{
    "CardProductionKey": "ProviderKey",
    "Number": "5359250012345678",
    "ExpireMonth": "11",
    "ExpireYear": "28",
    "Cvv": "948",
    "Phone": "5554443322",
    "Description": "Card Holder",
    "ExternalId": "1123ASDBB23"
}
```

{% endcode %}
{% endtab %}

{% tab title="C#" %}

```csharp
// Soon
```

{% endtab %}

{% tab title="GO" %}

```go
// Soon
```

{% endtab %}

{% tab title="Java" %}

```java
// Soon
```

{% endtab %}

{% tab title="PHP" %}

```php
// Soon
```

{% endtab %}

{% tab title="Python" %}

```python
// Soon
```

{% endtab %}

{% tab title="Ruby" %}

```ruby
// Soon
```

{% endtab %}

{% tab title="TypeScript" %}

```typescript
// Soon
```

{% endtab %}

{% tab title="Curl" %}

```sh
// Soon
```

{% endtab %}
{% endtabs %}

**The response returned from the service:**

<table><thead><tr><th width="156">Parameter</th><th width="92.33333333333331">Type</th><th>Description</th></tr></thead><tbody><tr><td>Body</td><td>object</td><td>JSON containing detailed information about the card.</td></tr><tr><td>ErrorCode</td><td>int</td><td>Error code. Returns '0' if the operation is successful.</td></tr><tr><td>Result</td><td>bool</td><td>It returns a value of true or false. Returns 'true' if the operation is successful.</td></tr><tr><td>Message</td><td>string</td><td>If the operation is unsuccessful, this is the specified error message, providing language support according to the locale parameter.</td></tr></tbody></table>

{% tabs %}
{% tab title="JSON" %}
{% code overflow="wrap" lineNumbers="true" %}

```json5
{
    "ErrorCode": 0,
    "Result": true,
    "Message": "",
    "Body": null
}
```

{% endcode %}
{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.paywall.one/payment-orchestration-integration-document/card-production-service/physical-card/1.-add.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
