Payments
Get payments
Retrieves all payments for the specified store using the filter specified.
Authorization: APIKey TOKEN.Show fieldsHide fields
noneNo chargeback
pendingChargeback is pending
wonChargeback dispute was won
lostChargeback dispute was lost
customerCustomerDtoRequiredRepresents a customer in the PayNow system with their associated profiles and metadata.
minecraftCustomerMinecraftProfileDtoOptionalRepresents a Minecraft profile for a customer.
unknownjavabedrock
profileCustomerGenericProfileDtoOptionalRepresents a generic platform profile for a customer.
steamCustomerSteamProfileDtoOptionalRepresents a Steam profile for a customer.
methodPaymentMethodDtoRequiredRepresents a stored payment method
method_detailsPaymentMethodDetailsDtoRequiredContains detailed information about a payment method.
DISCLAIMER: These fields are not guaranteed to be backwards compatible and may change or be removed without notice.
unknownUnknown status
createdPayment has been created but not yet processed
pendingPayment is pending processing
completedPayment has been completed successfully
canceledPayment has been canceled
failedPayment has failed
refundedPayment has been fully refunded
chargebackPayment has been charged back
refund_failedRefund processing failed
refund_processingRefund is currently processing
last_payment_errorLastPaymentErrorDtoOptionalThe last payment decline object.
unknownAn unknown error occurred during payment processing.
generic_declineThe payment was declined for an unspecified reason.
call_issuerThe payment provider requires the customer to contact them.
authentication_requiredAdditional authentication is needed to complete the transaction.
currency_not_supportedThe chosen currency is not supported by this payment method.
duplicate_transactionAn identical transaction was recently processed.
expired_cardThe payment method has passed its expiration date.
fraudulentThe payment was flagged as potentially fraudulent.
incorrect_numberThe provided payment number is invalid.
incorrect_cvcThe security code for the payment method is incorrect.
incorrect_pinThe entered PIN is not valid.
incorrect_zipThe provided billing postal code is incorrect.
insufficient_fundsThe payment method lacks sufficient funds for the transaction.
invalid_accountThe payment method or associated account is not valid.
invalid_amountThe transaction amount is not allowed or is invalid.
invalid_expiry_monthThe expiration month for the payment method is invalid.
invalid_expiry_yearThe expiration year for the payment method is invalid.
issuer_not_availableThe payment provider's systems are currently unavailable.
lost_cardThe payment method has been reported as lost.
merchant_blacklistThe transaction was blocked by PayNow's security measures.
new_account_information_availableUpdated information is available for the payment method.
no_action_takenThe payment provider took no action on this transaction.
pickup_cardThe payment method has been flagged and cannot be used.
pin_try_exceededToo many incorrect PIN attempts have been made.
restricted_cardThe payment method has restrictions preventing its use.
stolen_cardThe payment method has been reported as stolen.
testmode_declineA test payment method was used in a live environment.
try_again_laterA temporary issue prevented the transaction from completing.
security_violationA security issue occurred during the transaction.
card_velocity_exceededThe payment method has exceeded its usage limits.
do_not_honorThe payment provider has chosen not to process this transaction.
processing_errorAn error occurred while processing the payment.
card_not_supportedThis payment method doesn't support this type of transaction.
transaction_not_allowedThis specific transaction is not permitted for this payment method.
authorization_revokedThe payment authorization has been revoked.
store_blockedThe payment was blocked by one of your store's configured rules.
payout_split_resultsPaymentPayoutSplitResultDto[]OptionalThe payout split results for multi-party payments
payout_split_rulesPaymentPayoutSplitRuleDto[]OptionalThe payout split rules for multi-party payments
splitsPaymentPayoutSplitRuleSplitDto[]RequiredThe list of splits defining how the payout should be divided
refundsRefundDto[]OptionalThe list of refunds associated with this payment
createdRefund has been created but not yet processed
approvedRefund has been approved but not yet processed (reserved for customer requested refunds)
processingRefund is currently being processed by the payment system
completedRefund has been successfully completed
canceledRefund has been canceled before completion
failedRefund processing has failed
Failed requests return a PayNowError body. See the error response guide.
curl -X GET "https://api.paynow.gg/v1/stores/{storeId}/payments" \
-H "Authorization: APIKey TOKEN"import { createManagementClient } from "@paynow-gg/typescript-sdk";
const paynow = createManagementClient({
apiKey: "API_KEY",
storeId: "STORE_ID",
});
const result = await paynow.payments.getPayments();import requests
headers = {"Authorization": "APIKey TOKEN"}
response = requests.get("https://api.paynow.gg/v1/stores/{storeId}/payments", headers=headers)[
{
"amount": 10000,
"chargeback_status": "none",
"created_at": "2025-04-01T15:30:45Z",
"currency": "usd",
"customer": {
"created_at": "2024-01-01T00:00:00Z",
"id": "411486491630370816",
"metadata": {},
"store_id": "411486491630370816",
"profile": {
"id": "string",
"name": "string",
"platform": "steam",
"avatar_url": "string"
},
"steam_id": "76561197960287930",
"steam": {
"avatar_url": "string",
"id": "76561197960287930",
"name": "string"
},
"minecraft_uuid": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
"minecraft": {
"avatar_url": "string",
"id": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
"name": "notch"
},
"xbox_xuid": "string",
"minecraft_platform": "unknown",
"name": "m0uka",
"updated_at": "2024-01-01T00:00:00Z"
},
"customer_id": "411486491630370816",
"gateway": "stripe",
"gateway_entity_identifier": "string",
"gateway_fee_amount": 320,
"gateway_id": "string",
"id": "411486491630370816",
"method": {
"created_at": "2025-03-15T10:20:30Z",
"customer_id": "411486491630370816",
"gateway": "string",
"gateway_customer_id": "string",
"gateway_entity_identifier": "string",
"gateway_id": "string",
"gateway_type": "card",
"id": "411486491630370816",
"method_details": {
"card": {
"brand": "visa",
"country": "US",
"exp_month": 12,
"exp_year": 2028,
"fingerprint": "abc123def456",
"funding": "credit",
"last4": "4242",
"bin": 424242,
"issuer": "Chase Bank",
"description": "Visa Signature",
"brand_product": "F",
"wallet": {
"type": "apple_pay"
}
},
"cashapp": {
"buyer_id": "buyer_abc123",
"cashtag": "$johndoe"
},
"paypal": {
"country": "US",
"payer_email": "john.doe@example.com",
"payer_id": "PAYERID123",
"payer_name": "John Doe",
"vault": true,
"pending_vault_approval": false,
"standalone_setup": false
},
"link": {
"email": "john.doe@example.com"
},
"crypto": {
"confirmations": 6,
"crypto_amount": "0.00150000",
"crypto_currency": "BTC",
"total_paid": "0.00150000",
"transaction_hashes": [
"string"
]
},
"steamskins": {
"items": [
{
"app_id": 730,
"id": "string",
"name": "AK-47 | Redline",
"price": 2500
}
]
},
"ideal": {
"bank": "abn_amro",
"bic": "ABNANL2A",
"iban_last4": 1234,
"payer_name": "John Doe"
},
"p24": {
"bank": "ing",
"payer_name": "Jan Kowalski"
},
"bancontact": {
"bank": "bnp_paribas",
"bank_name": "BNP Paribas",
"bic": "GEBABEBB",
"iban_last4": 3456,
"payer_name": "Jean Dupont"
},
"klarna": {
"country": "SE",
"method_category": "pay_later"
},
"alipay": {
"buyer_id": "buyer_abc123",
"fingerprint": "fingerprint_xyz789"
},
"pay_by_bank": {
"bank_name": "Chase Bank",
"bic": "CHASUS33",
"country": "US",
"payer_name": "John Smith"
},
"pix": {
"bank_name": "Banco do Brasil",
"bank_account_number": "12345-6",
"payer_name": "João Silva"
},
"paysafecard": {
"first_name": "string",
"last_name": "string",
"psc_id": "string",
"association_id": "string"
}
},
"method_type": "card",
"updated_at": "2025-03-20T14:30:00Z"
},
"order_id": "411486491630370816",
"platform_fee_amount": 500,
"platform_fee_rate": 500,
"presentment_amount": 9500,
"presentment_currency": "eur",
"status": "unknown",
"store_id": "411486491630370816",
"store_net_amount": 8330,
"tax_amount": 850,
"refunds": [
{
"amount": 0,
"amount_str": "string",
"created_at": "2024-01-01T00:00:00Z",
"currency": "string",
"customer_id": "411486491630370816",
"gateway_fee_amount": 0,
"gateway_fee_amount_str": "string",
"id": "411486491630370816",
"payment_id": "411486491630370816",
"platform_fee_amount": 0,
"platform_fee_amount_str": "string",
"refund_from_connected_user_balance": true,
"status": "created",
"store_id": "411486491630370816",
"store_net_amount": 0,
"store_net_amount_str": "string",
"store_refund_amount": 0,
"store_refund_amount_str": "string",
"tax_amount": 0,
"tax_amount_str": "string",
"order_line_id": "411486491630370816",
"failure_reason": "string",
"presentment_currency": "string",
"presentment_amount": 0,
"fx_rate": "string",
"approved_at": "2024-01-01T00:00:00Z",
"pending_at": "2024-01-01T00:00:00Z",
"completed_at": "2024-01-01T00:00:00Z",
"canceled_at": "2024-01-01T00:00:00Z",
"failed_at": "2024-01-01T00:00:00Z"
}
],
"method_id": "411486491630370816",
"fx_rate": 1.085,
"chargeback_status_updated_at": "2024-01-01T00:00:00Z",
"payout_split_rules": [
{
"line_amount_tax": 850,
"line_amount_total": 10000,
"line_id": "411486491630370816",
"splits": [
{
"platform_fee_percentage": 500,
"user_id": "411486491630370816",
"percentage": 5000
}
]
}
],
"payout_split_results": [
{
"connected_platform_fee_amount": 100,
"gateway_fee_amount": 320,
"gross_amount": 10000,
"line_id": "411486491630370816",
"net_amount": 8230,
"platform_fee_amount": 500,
"tax_amount": 850,
"user_id": "411486491630370816"
}
],
"pending_at": "2025-04-01T15:30:46Z",
"completed_at": "2025-04-01T15:31:12Z",
"canceled_at": "2024-01-01T00:00:00Z",
"failed_at": "2024-01-01T00:00:00Z",
"refunded_at": "2024-01-01T00:00:00Z",
"chargeback_at": "2024-01-01T00:00:00Z",
"last_payment_error": {
"decline_code": "unknown",
"message": "string"
}
}
]Get payment by ID
Retrieves a payment by an ID.
Authorization: APIKey TOKEN.Show fieldsHide fields
noneNo chargeback
pendingChargeback is pending
wonChargeback dispute was won
lostChargeback dispute was lost
customerCustomerDtoRequiredRepresents a customer in the PayNow system with their associated profiles and metadata.
minecraftCustomerMinecraftProfileDtoOptionalRepresents a Minecraft profile for a customer.
unknownjavabedrock
profileCustomerGenericProfileDtoOptionalRepresents a generic platform profile for a customer.
steamCustomerSteamProfileDtoOptionalRepresents a Steam profile for a customer.
methodPaymentMethodDtoRequiredRepresents a stored payment method
method_detailsPaymentMethodDetailsDtoRequiredContains detailed information about a payment method.
DISCLAIMER: These fields are not guaranteed to be backwards compatible and may change or be removed without notice.
unknownUnknown status
createdPayment has been created but not yet processed
pendingPayment is pending processing
completedPayment has been completed successfully
canceledPayment has been canceled
failedPayment has failed
refundedPayment has been fully refunded
chargebackPayment has been charged back
refund_failedRefund processing failed
refund_processingRefund is currently processing
last_payment_errorLastPaymentErrorDtoOptionalThe last payment decline object.
unknownAn unknown error occurred during payment processing.
generic_declineThe payment was declined for an unspecified reason.
call_issuerThe payment provider requires the customer to contact them.
authentication_requiredAdditional authentication is needed to complete the transaction.
currency_not_supportedThe chosen currency is not supported by this payment method.
duplicate_transactionAn identical transaction was recently processed.
expired_cardThe payment method has passed its expiration date.
fraudulentThe payment was flagged as potentially fraudulent.
incorrect_numberThe provided payment number is invalid.
incorrect_cvcThe security code for the payment method is incorrect.
incorrect_pinThe entered PIN is not valid.
incorrect_zipThe provided billing postal code is incorrect.
insufficient_fundsThe payment method lacks sufficient funds for the transaction.
invalid_accountThe payment method or associated account is not valid.
invalid_amountThe transaction amount is not allowed or is invalid.
invalid_expiry_monthThe expiration month for the payment method is invalid.
invalid_expiry_yearThe expiration year for the payment method is invalid.
issuer_not_availableThe payment provider's systems are currently unavailable.
lost_cardThe payment method has been reported as lost.
merchant_blacklistThe transaction was blocked by PayNow's security measures.
new_account_information_availableUpdated information is available for the payment method.
no_action_takenThe payment provider took no action on this transaction.
pickup_cardThe payment method has been flagged and cannot be used.
pin_try_exceededToo many incorrect PIN attempts have been made.
restricted_cardThe payment method has restrictions preventing its use.
stolen_cardThe payment method has been reported as stolen.
testmode_declineA test payment method was used in a live environment.
try_again_laterA temporary issue prevented the transaction from completing.
security_violationA security issue occurred during the transaction.
card_velocity_exceededThe payment method has exceeded its usage limits.
do_not_honorThe payment provider has chosen not to process this transaction.
processing_errorAn error occurred while processing the payment.
card_not_supportedThis payment method doesn't support this type of transaction.
transaction_not_allowedThis specific transaction is not permitted for this payment method.
authorization_revokedThe payment authorization has been revoked.
store_blockedThe payment was blocked by one of your store's configured rules.
payout_split_resultsPaymentPayoutSplitResultDto[]OptionalThe payout split results for multi-party payments
payout_split_rulesPaymentPayoutSplitRuleDto[]OptionalThe payout split rules for multi-party payments
splitsPaymentPayoutSplitRuleSplitDto[]RequiredThe list of splits defining how the payout should be divided
refundsRefundDto[]OptionalThe list of refunds associated with this payment
createdRefund has been created but not yet processed
approvedRefund has been approved but not yet processed (reserved for customer requested refunds)
processingRefund is currently being processed by the payment system
completedRefund has been successfully completed
canceledRefund has been canceled before completion
failedRefund processing has failed
Failed requests return a PayNowError body. See the error response guide.
curl -X GET "https://api.paynow.gg/v1/stores/{storeId}/payments/{paymentId}" \
-H "Authorization: APIKey TOKEN"import { createManagementClient } from "@paynow-gg/typescript-sdk";
const paynow = createManagementClient({
apiKey: "API_KEY",
storeId: "STORE_ID",
});
const result = await paynow.payments.getPaymentById("411486491630370816");import requests
headers = {"Authorization": "APIKey TOKEN"}
response = requests.get("https://api.paynow.gg/v1/stores/{storeId}/payments/{paymentId}", headers=headers){
"amount": 10000,
"chargeback_status": "none",
"created_at": "2025-04-01T15:30:45Z",
"currency": "usd",
"customer": {
"created_at": "2024-01-01T00:00:00Z",
"id": "411486491630370816",
"metadata": {},
"store_id": "411486491630370816",
"profile": {
"id": "string",
"name": "string",
"platform": "steam",
"avatar_url": "string"
},
"steam_id": "76561197960287930",
"steam": {
"avatar_url": "string",
"id": "76561197960287930",
"name": "string"
},
"minecraft_uuid": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
"minecraft": {
"avatar_url": "string",
"id": "f84c6a79-0a4e-45e0-879b-cd49ebd4c4e2",
"name": "notch"
},
"xbox_xuid": "string",
"minecraft_platform": "unknown",
"name": "m0uka",
"updated_at": "2024-01-01T00:00:00Z"
},
"customer_id": "411486491630370816",
"gateway": "stripe",
"gateway_entity_identifier": "string",
"gateway_fee_amount": 320,
"gateway_id": "string",
"id": "411486491630370816",
"method": {
"created_at": "2025-03-15T10:20:30Z",
"customer_id": "411486491630370816",
"gateway": "string",
"gateway_customer_id": "string",
"gateway_entity_identifier": "string",
"gateway_id": "string",
"gateway_type": "card",
"id": "411486491630370816",
"method_details": {
"card": {
"brand": "visa",
"country": "US",
"exp_month": 12,
"exp_year": 2028,
"fingerprint": "abc123def456",
"funding": "credit",
"last4": "4242",
"bin": 424242,
"issuer": "Chase Bank",
"description": "Visa Signature",
"brand_product": "F",
"wallet": {
"type": "apple_pay"
}
},
"cashapp": {
"buyer_id": "buyer_abc123",
"cashtag": "$johndoe"
},
"paypal": {
"country": "US",
"payer_email": "john.doe@example.com",
"payer_id": "PAYERID123",
"payer_name": "John Doe",
"vault": true,
"pending_vault_approval": false,
"standalone_setup": false
},
"link": {
"email": "john.doe@example.com"
},
"crypto": {
"confirmations": 6,
"crypto_amount": "0.00150000",
"crypto_currency": "BTC",
"total_paid": "0.00150000",
"transaction_hashes": [
"string"
]
},
"steamskins": {
"items": [
{
"app_id": 730,
"id": "string",
"name": "AK-47 | Redline",
"price": 2500
}
]
},
"ideal": {
"bank": "abn_amro",
"bic": "ABNANL2A",
"iban_last4": 1234,
"payer_name": "John Doe"
},
"p24": {
"bank": "ing",
"payer_name": "Jan Kowalski"
},
"bancontact": {
"bank": "bnp_paribas",
"bank_name": "BNP Paribas",
"bic": "GEBABEBB",
"iban_last4": 3456,
"payer_name": "Jean Dupont"
},
"klarna": {
"country": "SE",
"method_category": "pay_later"
},
"alipay": {
"buyer_id": "buyer_abc123",
"fingerprint": "fingerprint_xyz789"
},
"pay_by_bank": {
"bank_name": "Chase Bank",
"bic": "CHASUS33",
"country": "US",
"payer_name": "John Smith"
},
"pix": {
"bank_name": "Banco do Brasil",
"bank_account_number": "12345-6",
"payer_name": "João Silva"
},
"paysafecard": {
"first_name": "string",
"last_name": "string",
"psc_id": "string",
"association_id": "string"
}
},
"method_type": "card",
"updated_at": "2025-03-20T14:30:00Z"
},
"order_id": "411486491630370816",
"platform_fee_amount": 500,
"platform_fee_rate": 500,
"presentment_amount": 9500,
"presentment_currency": "eur",
"status": "unknown",
"store_id": "411486491630370816",
"store_net_amount": 8330,
"tax_amount": 850,
"refunds": [
{
"amount": 0,
"amount_str": "string",
"created_at": "2024-01-01T00:00:00Z",
"currency": "string",
"customer_id": "411486491630370816",
"gateway_fee_amount": 0,
"gateway_fee_amount_str": "string",
"id": "411486491630370816",
"payment_id": "411486491630370816",
"platform_fee_amount": 0,
"platform_fee_amount_str": "string",
"refund_from_connected_user_balance": true,
"status": "created",
"store_id": "411486491630370816",
"store_net_amount": 0,
"store_net_amount_str": "string",
"store_refund_amount": 0,
"store_refund_amount_str": "string",
"tax_amount": 0,
"tax_amount_str": "string",
"order_line_id": "411486491630370816",
"failure_reason": "string",
"presentment_currency": "string",
"presentment_amount": 0,
"fx_rate": "string",
"approved_at": "2024-01-01T00:00:00Z",
"pending_at": "2024-01-01T00:00:00Z",
"completed_at": "2024-01-01T00:00:00Z",
"canceled_at": "2024-01-01T00:00:00Z",
"failed_at": "2024-01-01T00:00:00Z"
}
],
"method_id": "411486491630370816",
"fx_rate": 1.085,
"chargeback_status_updated_at": "2024-01-01T00:00:00Z",
"payout_split_rules": [
{
"line_amount_tax": 850,
"line_amount_total": 10000,
"line_id": "411486491630370816",
"splits": [
{
"platform_fee_percentage": 500,
"user_id": "411486491630370816",
"percentage": 5000
}
]
}
],
"payout_split_results": [
{
"connected_platform_fee_amount": 100,
"gateway_fee_amount": 320,
"gross_amount": 10000,
"line_id": "411486491630370816",
"net_amount": 8230,
"platform_fee_amount": 500,
"tax_amount": 850,
"user_id": "411486491630370816"
}
],
"pending_at": "2025-04-01T15:30:46Z",
"completed_at": "2025-04-01T15:31:12Z",
"canceled_at": "2024-01-01T00:00:00Z",
"failed_at": "2024-01-01T00:00:00Z",
"refunded_at": "2024-01-01T00:00:00Z",
"chargeback_at": "2024-01-01T00:00:00Z",
"last_payment_error": {
"decline_code": "unknown",
"message": "string"
}
}