#Kyle De Ayala
1 messages · Page 1 of 1 (latest)
Can you send the text of that error? Easier to work with the object IDs and URL from it
{
"error": {
"message": "Invalid object",
"param": "address",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_G4vnGMhTjgeeA9?t=1676467765",
"type": "invalid_request_error"
}
}
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
here
Trying to create a customer account via api
Thank you, checking in to that error now
I appreciate that.
So from the logs it looks like you accidentally sent the address as one long string rather than an actual hash https://dashboard.stripe.com/test/logs/req_G4vnGMhTjgeeA9
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Not sure of the proper syntax in curl, looking in to it if you don't know that immediately either
Yes please thanks you
It looks like you need to break it up in to individual arguments like so:
-d "billing[address][city]"=Philadelphia \
-d "billing[address][state]"=PA \
-d "billing[address][postal_code]"=19019 \
-d "billing[address][country]"=US```
thank you let me go ahead and do that instead I'll reach out if I get another error thank you!
Sounds good!