#greed0clock

1 messages · Page 1 of 1 (latest)

lusty galeBOT
tulip geode
hexed grove
#

The transaction is not on my logs in the dashboard. Please see the below for more details. async function test(){
const customers = await stripe.customers.list({
limit: 5,
});
console.log(customers)
}
test()

tulip geode
#

Each API request has an associated request identifier. You can find this value in the response headers, under Request-Id

#

without the request id, i can't really do much to troubleshoot further

hexed grove
#

=> req_xaRZiMigJ0ZqjR. Thanks for clarifying.

tulip geode
#

The customers listed in your Dashboard are "guest" customers, they are not actual Customer objects (https://stripe.com/docs/api/customers/object) and won't be returned when you attempt to list all Customers. You can read about guest customers here : https://stripe.com/docs/payments/checkout/guest-customers

Learn how to track the activity of guest customers.