const paymentsApi = client.paymentsApi;
PaymentsApi
- List Payments
- Create Payment
- Cancel Payment by Idempotency Key
- Get Payment
- Update Payment
- Cancel Payment
- Complete Payment
Retrieves a list of payments taken by the account making the request.
Results are eventually consistent, and new payments or changes to payments might take several seconds to appear.
The maximum results per page is 100.
async listPayments( beginTime?: string,
endTime?: string,
sortOrder?: string,
cursor?: string,
locationId?: string,
total?: bigint,
last4?: string,
cardBrand?: string,
limit?: number,
isOfflinePayment?: boolean,
offlineBeginTime?: string,
offlineEndTime?: string,
requestOptions?: RequestOptions): Promise<ApiResponse<ListPaymentsResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
beginTime |
string | undefined |
Query, Optional | Indicates the start of the time range to retrieve payments for, in RFC 3339 format. The range is determined using the created_at field for each Payment.Inclusive. Default: The current time minus one year. |
endTime |
string | undefined |
Query, Optional | Indicates the end of the time range to retrieve payments for, in RFC 3339 format. The range is determined using the created_at field for each Payment.Default: The current time. |
sortOrder |
string | undefined |
Query, Optional | The order in which results are listed by Payment.created_at :- ASC - Oldest to newest.- DESC - Newest to oldest (default). |
cursor |
string | undefined |
Query, Optional | A pagination cursor returned by a previous call to this endpoint. Provide this cursor to retrieve the next set of results for the original query. For more information, see Pagination. |
locationId |
string | undefined |
Query, Optional | Limit results to the location supplied. By default, results are returned for the default (main) location associated with the seller. |
total |
bigint | undefined |
Query, Optional | The exact amount in the total_money for a payment. |
last4 |
string | undefined |
Query, Optional | The last four digits of a payment card. |
cardBrand |
string | undefined |
Query, Optional | The brand of the payment card (for example, VISA). |
limit |
number | undefined |
Query, Optional | The maximum number of results to be returned in a single page. It is possible to receive fewer results than the specified limit on a given page. The default value of 100 is also the maximum allowed value. If the provided value is greater than 100, it is ignored and the default value is used instead. Default: 100 |
isOfflinePayment |
boolean | undefined |
Query, Optional | Whether the payment was taken offline or not. Default: false |
offlineBeginTime |
string | undefined |
Query, Optional | Indicates the start of the time range for which to retrieve offline payments, in RFC 3339 format for timestamps. The range is determined using the offline_payment_details.client_created_at field for each Payment. If set, payments without avalue set in offline_payment_details.client_created_at will not be returned.Default: The current time. |
offlineEndTime |
string | undefined |
Query, Optional | Indicates the end of the time range for which to retrieve offline payments, in RFC 3339 format for timestamps. The range is determined using the offline_payment_details.client_created_at field for each Payment. If set, payments without avalue set in offline_payment_details.client_created_at will not be returned.Default: The current time. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
const isOfflinePayment = false;
try {
const { result, ...httpResponse } = await paymentsApi.listPayments(
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
undefined,
isOfflinePayment
);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Creates a payment using the provided source. You can use this endpoint
to charge a card (credit/debit card or
Square gift card) or record a payment that the seller received outside of Square
(cash payment from a buyer or a payment that an external entity
processed on behalf of the seller).
The endpoint creates a
Payment
object and returns it in the response.
async createPayment( body: CreatePaymentRequest,
requestOptions?: RequestOptions): Promise<ApiResponse<CreatePaymentResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
body |
CreatePaymentRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
const body: CreatePaymentRequest = {
sourceId: 'ccof:GaJGNaZa8x4OgDJn4GB',
idempotencyKey: '7b0f3ec5-086a-4871-8f13-3c81b3875218',
amountMoney: {
amount: BigInt(1000),
currency: 'USD',
},
appFeeMoney: {
amount: BigInt(10),
currency: 'USD',
},
autocomplete: true,
customerId: 'W92WH6P11H4Z77CTET0RNTGFW8',
locationId: 'L88917AVBK2S5',
referenceId: '123456',
note: 'Brief description',
};
try {
const { result, ...httpResponse } = await paymentsApi.createPayment(body);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Cancels (voids) a payment identified by the idempotency key that is specified in the request.
Use this method when the status of a CreatePayment
request is unknown (for example, after you send a
CreatePayment
request, a network error occurs and you do not get a response). In this case, you can
direct Square to cancel the payment using this endpoint. In the request, you provide the same
idempotency key that you provided in your CreatePayment
request that you want to cancel. After
canceling the payment, you can submit your CreatePayment
request again.
Note that if no payment with the specified idempotency key is found, no action is taken and the endpoint returns successfully.
async cancelPaymentByIdempotencyKey( body: CancelPaymentByIdempotencyKeyRequest,
requestOptions?: RequestOptions): Promise<ApiResponse<CancelPaymentByIdempotencyKeyResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
body |
CancelPaymentByIdempotencyKeyRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
CancelPaymentByIdempotencyKeyResponse
const body: CancelPaymentByIdempotencyKeyRequest = {
idempotencyKey: 'a7e36d40-d24b-11e8-b568-0800200c9a66',
};
try {
const { result, ...httpResponse } = await paymentsApi.cancelPaymentByIdempotencyKey(body);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Retrieves details for a specific payment.
async getPayment( paymentId: string,
requestOptions?: RequestOptions): Promise<ApiResponse<GetPaymentResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
paymentId |
string |
Template, Required | A unique ID for the desired payment. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
const paymentId = 'payment_id0';
try {
const { result, ...httpResponse } = await paymentsApi.getPayment(paymentId);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Updates a payment with the APPROVED status.
You can update the amount_money
and tip_money
using this endpoint.
async updatePayment( paymentId: string,
body: UpdatePaymentRequest,
requestOptions?: RequestOptions): Promise<ApiResponse<UpdatePaymentResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
paymentId |
string |
Template, Required | The ID of the payment to update. |
body |
UpdatePaymentRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
const paymentId = 'payment_id0';
const body: UpdatePaymentRequest = {
idempotencyKey: '956f8b13-e4ec-45d6-85e8-d1d95ef0c5de',
payment: {
amountMoney: {
amount: BigInt(1000),
currency: 'USD',
},
tipMoney: {
amount: BigInt(100),
currency: 'USD',
},
versionToken: 'ODhwVQ35xwlzRuoZEwKXucfu7583sPTzK48c5zoGd0g6o',
},
};
try {
const { result, ...httpResponse } = await paymentsApi.updatePayment(
paymentId,
body
);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Cancels (voids) a payment. You can use this endpoint to cancel a payment with
the APPROVED status
.
async cancelPayment( paymentId: string,
requestOptions?: RequestOptions): Promise<ApiResponse<CancelPaymentResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
paymentId |
string |
Template, Required | The ID of the payment to cancel. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
const paymentId = 'payment_id0';
try {
const { result, ...httpResponse } = await paymentsApi.cancelPayment(paymentId);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}
Completes (captures) a payment. By default, payments are set to complete immediately after they are created.
You can use this endpoint to complete a payment with the APPROVED status
.
async completePayment( paymentId: string,
body: CompletePaymentRequest,
requestOptions?: RequestOptions): Promise<ApiResponse<CompletePaymentResponse>>
Parameter | Type | Tags | Description |
---|---|---|---|
paymentId |
string |
Template, Required | The unique ID identifying the payment to be completed. |
body |
CompletePaymentRequest |
Body, Required | An object containing the fields to POST for the request. See the corresponding object definition for field details. |
requestOptions |
RequestOptions | undefined |
Optional | Pass additional request options. |
const paymentId = 'payment_id0';
const body: CompletePaymentRequest = {};
try {
const { result, ...httpResponse } = await paymentsApi.completePayment(
paymentId,
body
);
// Get more response info...
// const { statusCode, headers } = httpResponse;
} catch (error) {
if (error instanceof ApiError) {
const errors = error.result;
// const { statusCode, headers } = error;
}
}