Widget SDK Reference
Examples
Paysight API
Email Services
Payment API
- Card
Customer Service API
- API Reference
Admin API
- MerchantAccounts
- Transactions
Mitigation API
- API for Chargeback Mitigation Providers
API Reference
Search
Submits card details for payment/subscription signup
POST
/
search
Copy
curl --request POST \
--url https://test.paysight.io/customerapi/search \
--header 'Content-Type: application/json' \
--data '{
"parentCompanyId": 1,
"userEmail": "care@yourdomain.com",
"email": "joe@bloggs.com",
"cardNumber": "535456******1742",
"name": "Joe Bloggs",
"orderId": 1095654254
}'
Copy
{
"success": true,
"message": "",
"transactions": [
{
"gateway": "Decline Defense",
"messageID": "429b7902-33de-416c-ab98-3d165870bcec",
"orderId": 191582180,
"sent": "2023-11-07T05:31:56Z",
"email": "shanec@paysight.io",
"application": "Sub Start MID Retry",
"applicationID": 209,
"customerID": 38284156,
"shortcodeID": 1533,
"billingCode": "FlexCharge - CommerceConnect - Grand Med",
"data": "19 Day Renewal.Charge FAILED: Do Not Honor - 29.990 NMITransId:9943005219 FlexCharge rescue attempt",
"status": "Submitted",
"statusID": 1789,
"success": false,
"completed": "<string>",
"premium": 1,
"currency": "USD",
"pricePointID": 31566,
"pricePoint": "$29.990",
"priceVal": 29.99,
"product": "US - RibbedDecor",
"productID": 8324,
"campaign": "None/Unassigned",
"campaignID": 0,
"shopId": 1300430925,
"storeName": "Ribbedecor",
"storeDomain": "www.ribbedecor.com",
"storeRootDomain": "ribbedecor.com",
"merchantAccountId": 608,
"midName": "DeclineDefense - Commerce Connect - Grand Media",
"mid": "flexComConGrandMedia",
"companyId": 103,
"company": "Grand Media Inc.",
"parentCompanyId": 100,
"parentCompany": "Commerce Connect",
"bin": "535456",
"last4": 1742,
"sessionId": "20240829140820431062231114683",
"name": "Shane Connolly",
"refundable": false,
"refunded": false,
"hasAlert": false,
"chargedBack": false,
"attempt": 2,
"authOnly": false,
"paymentNumber": 1,
"totalAttempt": 2,
"refundSource": 0,
"alertType": 0,
"alertSource": 0,
"originalMessageId": "<string>",
"originalApplicationId": 209,
"originalApplication": "Sub Start MID Retry",
"storeCurrency": "USD",
"blackListing": 0,
"alertSourceName": "Unassigned",
"alertTypeName": "Unassigned",
"refundSourceName": "Unassigned",
"childTransactions": [
{}
]
}
]
}
Body
application/json
Payload
The body is of type object
.
Response
200 - application/json
Valid Request. More detailed info will be in the JSON body
The response is of type object
.
Copy
curl --request POST \
--url https://test.paysight.io/customerapi/search \
--header 'Content-Type: application/json' \
--data '{
"parentCompanyId": 1,
"userEmail": "care@yourdomain.com",
"email": "joe@bloggs.com",
"cardNumber": "535456******1742",
"name": "Joe Bloggs",
"orderId": 1095654254
}'
Copy
{
"success": true,
"message": "",
"transactions": [
{
"gateway": "Decline Defense",
"messageID": "429b7902-33de-416c-ab98-3d165870bcec",
"orderId": 191582180,
"sent": "2023-11-07T05:31:56Z",
"email": "shanec@paysight.io",
"application": "Sub Start MID Retry",
"applicationID": 209,
"customerID": 38284156,
"shortcodeID": 1533,
"billingCode": "FlexCharge - CommerceConnect - Grand Med",
"data": "19 Day Renewal.Charge FAILED: Do Not Honor - 29.990 NMITransId:9943005219 FlexCharge rescue attempt",
"status": "Submitted",
"statusID": 1789,
"success": false,
"completed": "<string>",
"premium": 1,
"currency": "USD",
"pricePointID": 31566,
"pricePoint": "$29.990",
"priceVal": 29.99,
"product": "US - RibbedDecor",
"productID": 8324,
"campaign": "None/Unassigned",
"campaignID": 0,
"shopId": 1300430925,
"storeName": "Ribbedecor",
"storeDomain": "www.ribbedecor.com",
"storeRootDomain": "ribbedecor.com",
"merchantAccountId": 608,
"midName": "DeclineDefense - Commerce Connect - Grand Media",
"mid": "flexComConGrandMedia",
"companyId": 103,
"company": "Grand Media Inc.",
"parentCompanyId": 100,
"parentCompany": "Commerce Connect",
"bin": "535456",
"last4": 1742,
"sessionId": "20240829140820431062231114683",
"name": "Shane Connolly",
"refundable": false,
"refunded": false,
"hasAlert": false,
"chargedBack": false,
"attempt": 2,
"authOnly": false,
"paymentNumber": 1,
"totalAttempt": 2,
"refundSource": 0,
"alertType": 0,
"alertSource": 0,
"originalMessageId": "<string>",
"originalApplicationId": 209,
"originalApplication": "Sub Start MID Retry",
"storeCurrency": "USD",
"blackListing": 0,
"alertSourceName": "Unassigned",
"alertTypeName": "Unassigned",
"refundSourceName": "Unassigned",
"childTransactions": [
{}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.