Skip to main content

Payment Accounts Admin API (0)

Download OpenAPI specification:Download

Payments Administration

This association is done by assigning the same ID to the payment account and the entity it is linked to.

Payments

Represents a payment account used during order placement. It has a balance and stores the transactions and the financial instruments that modified its balance.

Use this resource to retrieve information about a payment account. A payment account can also be used to track the balance and transactions of other entities created by the NewStore platform. For example, a payment account can be associated with an entity such as a sales order, a customer, or a shopping bag by assigning the same ID to the payment account and to the entity.

Note - Currently, NewStore only supports assigning the same ID to a payment account and the related sales order.

Retry operation

Retries the financial operation (authorization, capture or refund) identified by the provided correlation identifier. To get an operation's correlation identifier, use the Get payment history method.

Authorizations:
newStoreAccessToken
path Parameters
account_id
required
string (account ID)

Unique ID of a payment account. It is the same ID as the entity the payment account is assigned to. For example, use the internal ID (uuid) of a sales order.

Request Body schema: application/json
correlation_id
required
string

Identifier of the request that should be retried. Only captures and refunds are supported.

instrument_id
string

Identifier of the instrument that should be retried.

amount
number

An optional amount to override the original failed request. Can only apply to capture requests, with a single failed operation.

Responses

Request samples

Content type
application/json
{
  • "correlation_id": "43696bcc-6242-4428-b5ee-76417c539fea"
}

Response samples

Content type
application/json
{
  • "messages": [
    ],
  • "request_id": "string",
  • "error_code": "string"
}

Mark an operation as successful

Sets the financial operation (capture or refund) identified by the provided correlation identifier as successful. To get an operation's correlation identifier, use the Get payment history method.

Authorizations:
newStoreAccessToken
path Parameters
account_id
required
string (account ID)

Unique ID of a payment account. It is the same ID as the entity the payment account is assigned to. For example, use the internal ID (uuid) of a sales order.

Request Body schema: application/json
correlation_id
required
string

Identifier of the request that should be marked as successful. Only captures and refunds are supported.

gc_number
string

Identifier of the gift card the operation was successful on. Optional for refunds to scanned gift cards, required for e-gift cards, ignored for other operations.

Responses

Request samples

Content type
application/json
{
  • "correlation_id": "43696bcc-6242-4428-b5ee-76417c539fea",
  • "gc_number": 850928572937
}

Response samples

Content type
application/json
{
  • "messages": [
    ],
  • "request_id": "string",
  • "error_code": "string"
}

Balance an account

Balances accounts with negative balances, triggering refunds when a customer overpaid. Should be manually invoked when it is certain that it is not caused by a provider misbehavior, like emitting double successes for a capture request.

Authorizations:
newStoreAccessToken
path Parameters
account_id
required
string (account ID)

Unique ID of a payment account. It is the same ID as the entity the payment account is assigned to. For example, use the internal ID (uuid) of a sales order.

Responses

Response samples

Content type
application/json
{
  • "messages": [
    ],
  • "request_id": "string",
  • "error_code": "string"
}

Process a balance account operation

Balances accounts with negative balances, triggering refunds when a customer overpaid. Should be manually invoked when it is certain that it is not caused by a provider misbehavior, like emitting double successes for a capture request.

Authorizations:
newStoreAccessToken
path Parameters
account_id
required
string (account ID)

Unique ID of a payment account. It is the same ID as the entity the payment account is assigned to. For example, use the internal ID (uuid) of a sales order.

Responses

Response samples

Content type
application/json
{
  • "messages": [
    ],
  • "request_id": "string",
  • "error_code": "string"
}

Get payment history

Returns the history of the provided account.

Authorizations:
newStoreAccessToken
path Parameters
account_id
required
string (account ID)

Unique ID of a payment account. It is the same ID as the entity the payment account is assigned to. For example, use the internal ID (uuid) of a sales order.

Responses

Response samples

Content type
application/json
{
  • "history": [
    ]
}

Create a new account with an initial transaction

Creates a new account, initializing its debit and credit with transactions

Authorizations:
newStoreAccessToken
Request Body schema: application/json
account_id
string
Array of objects (Transaction)

The list of the transactions in the account.

Responses

Request samples

Content type
application/json
{
  • "account_id": "f32b7e68-dd19-49c7-b192-ec1f22775f3b",
  • "transactions": [
    ]
}

Response samples

Content type
application/json
{
  • "account_id": "string"
}

Adds a financial instrument to an account

Adds a financial instrument to an account.

Authorizations:
newStoreAccessToken
path Parameters
account_id
required
string (account ID)

Unique ID of a payment account. It is the same ID as the entity the payment account is assigned to. For example, use the internal ID (uuid) of a sales order.

Request Body schema: application/json
required
object (A financial instrument of an account)
payment_method
required
string

The payment method. Possible values: cash, credit_card, gift_card, paypal.

payment_wallet
string

Source of the financial instrument. For example: 'APPLE_PAY'.

payment_origin
string

Source of the payment. For example: 'newstore_checkout'.

payment_provider
required
string

The payment service provider

amount
required
number
currency
required
string

The currency code in ISO-4217 format.

required
object
metadata
object

Internal opaque object containing the data required by the payment provider to process the payment.

Responses

Request samples

Content type
application/json
{
  • "instrument": {
    }
}

Response samples

Content type
application/json
{
  • "instrument_identifier": "string"
}