#get stripe customer
1 messages · Page 1 of 1 (latest)
Hi, for integration purpose we need to search the records customer/invoice/payment based on record created date. Is there any paramater available to filter newly created records ?
What do you mean by "newly created"?
day to day we need to integrate the records from stripe to other application, so we need some parameter to filter the records which was already processed and only the new records created after the integration
Then you will need to keep track of the records that you have processed
You can do it in your database, or you can use the Invoice metadata.
You can set, for example:
metadata: {
processed: true
}
And then you can query by metadata["key"]:"value": https://stripe.com/docs/search#query-fields-for-invoices
processed is a custom field we need to create right ?
Yes.
Thank you, is there any API usage limit ?
If you need more, you can reach out to Support: https://support.stripe.com/?contact=true
thank you
Happy to help!