#J Sam
1 messages · Page 1 of 1 (latest)
WHen you say "find connected account" do you mean "get the Connect account's Account object via the API"?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You look at the requirements hash: https://stripe.com/docs/connect/identity-verification-api#determining-if-identity-or-business-verification-is-needed
$tes = $stripe->accounts->retrieve(
'acc####',
[]
);
This is the code I have right now
How would I get a specific option from the array?
I want to check if this is active or inactive
I'm not sure I understand the question
Hello! I'm taking over and catching up...
In your code above $tes would be an array of Account objects. It's a normal PHP array, you can access the contents using any standard PHP array access approaches.
Ah, okay