Skipify Gateway API (DRAFT)
Learn how to integrate the Skipify Gateway API
Your merchant account needs to be approved and configured in order to use this product
Haven't set that up yet? No worries! Reach out to your friendly implementation engineer and they'll make sure your account is properly set up.
Please note that you will need to provide PCI certification documentation to be reviewed on a regular basis.
Overview
The Skipify Gateway API allows you to directly submit a transaction using card details or a network token.
Use this approach if you need ultimate flexibility to submit a payment without a user interacting with a webpage. This product provides you with multi-PSP access without having to integrate and manage each psp integration.
Set up a Skipify merchant account for each PSP in-scope.
Submit a Payment
This endpoint uses API Key Authentication
Check out our API KEY Authentication Section to learn more
API Request
To submit a payment request, send an API call to:
Staging:
POST https://services.staging.skipify.com/v1/gateway/payments
Production:
POST https://services.skipify.com/v1/gateway/payments
Request Body Parameters
Parameter Name | Required? | Type | Description |
---|---|---|---|
amount | yes | integer | This is the amount to authorize the card for. The last two digits are cents, so $20.50 would be sent as 2050. |
merchantReference | yes | string | This is your unique merchant identifier/invoice number for this transaction. |
paymentMethod | yes | object | An object that contains the paymentMethod details. If using card details, this includes PAN+CVV, if using tokens, this includes NetworkToken+Cryptogram. |
billingAddress | yes | object | The customer object includes a set of properties that are required if you want to verify AVS results with your payment authorization. zipcode is required |
customer | yes | object | The customer object includes fullName, email and phone if you want to send this to Skipify for reporting purposes. Full Name is required. |
Payment Method
paymentMethod Parameters
Parameter Name | Required? | Type | Description |
---|---|---|---|
type | yes | string | card or token |
cardNumber | yes | string | An object that contains the paymentMethod details. If using card details, this includes PAN+CVV, if using tokens, this includes NetworkToken+Cryptogram. |
expirationMonth | conditional | integer | The card's expiration month i.e. 01 or 12. Required if submitting card (PAN) details. |
expirationYear | conditional | integer | The card's 4-digit expiration year i.e. 2029. Required if submitting card (PAN) details. |
cvv | conditional | string | Required if submitting card (PAN) details. |
cryptogram | conditional | string | Required if submitting token (NetworkToken) details. |
Billing Address
billingAddress Parameters
Parameter Name | Required? | Type | Description |
---|---|---|---|
address1 | no | string | The cardholder's billing Street Address i.e. 123 Main Avenue |
address2 | no | string | The cardholder's billing Street Address Line 2 i.e. APT 15 |
city | no | integer | The cardholder's billing City |
state | no | integer | The cardholder's billing State |
zipcode | yes | string | The cardholder's billing zipcode (postal code). |
country | no | string | The cardholder's billing country |
Customer
Customer Parameters
Parameter Name | Required? | Type | Description |
---|---|---|---|
fullName | no | string | The cardholder's first and last name |
no | string | The cardholder's email address | |
phone | no | string | The cardholder's mobile phone number |
Request Body Example
{
"amount": 5000,
"paymentMethod": {
"type": "card",
"cardNumber": "string",
"expirationMonth": 12,
"expirationYear": 3000,
"cvv": "string",
"cryptogram": "string"
},
"billingAddress": {
"address1": "string",
"address2": "string",
"city": "string",
"state": "st",
"zipcode": "string",
"country": "US"
},
"customer": {
"fullName": "string",
"email": "[email protected]",
"phone": "string"
}
}
API Response Example
{
"transactionId": "73c335b2-0dad-4e4a-b10b-950614f80953",
"pspTransactionId": "dE3Hnj7c_SD9",
"status": "Authorized",
"amount": 5000,
"initialAmount": 5000,
"pspRawResponse": "FWWp",
"completedAt": "2025-07-21T17:32:28Z",
"lastFour": "0005",
"networkType": "visa",
"isPartial": false
}
Refund a Payment
The shopper requests a refund. You use referenced data from the initial transaction response to send the refund request to Skipify.
API Request
To Refund a Payment, send an API call to:
Staging:
POST https://services.stage.skipify.com/payments/{transactionId}/refund
TBCProduction:
POST https://services.skipify.com/payments/{transactionId}/refund
TBC
Request Body Parameters TBC
Parameter Name | Required? | Type | Description |
---|---|---|---|
amount | no | integer | This is the amount you want to refund, you do not need to pass this if you want to refund the full amount. The last two digits are cents, so $20.50 would be sent as 2050. |
{
"amount": "string",
}
API Response Example
{
"transactionId": "73c335b2-0dad-4e4a-b10b-950614f80953",
"pspTransactionId": "dE3Hnj7c_SD9",
"status": "Refunded",
"amount": 5000,
"pspRawResponse": "FWWp",
"completedAt": "2025-07-21T17:32:28Z"
}
Cancel a Payment
The transaction was made in error and needs to be cancelled.
API Request
To Cancel a Payment, send an API call to:
Staging:
POST https://stage-gateway.skipify.com/payments/{transactionId}/cancel
TBCProduction:
POST https://gateway.skipify.com/payments/{transactionId}/cancel
TBC
Request Body Parameters TBC
Parameter Name | Required? | Type | Description |
---|---|---|---|
amount | no | integer | This is the amount you want to cancel, you do not need to pass this if you want to refund the full amount. The last two digits are cents, so $20.50 would be sent as 2050. |
{
"amount": "string",
}
API Response Example
{
"transactionId": "73c335b2-0dad-4e4a-b10b-950614f80953",
"pspTransactionId": "dE3Hnj7c_SD9",
"status": "Canceled",
"amount": 5000,
"pspRawResponse": "FWWp",
"completedAt": "2025-07-21T17:32:28Z"
}
Updated 15 days ago