#greed0clock
1 messages · Page 1 of 1 (latest)
hi there, can you share the request id [0]? it'd look like req_xxx
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
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()
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
=> req_xaRZiMigJ0ZqjR. Thanks for clarifying.
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