Skip to main content
GET
/
api
/
payments
/
stripe
/
status
Get Stripe Payments Status
curl --request GET \
  --url https://api.example.com/api/payments/stripe/status \
  --header 'Authorization: Bearer <token>'
{
  "connections": [
    {
      "accountId": "acct_123",
      "accountEmail": "owner@example.com",
      "accountLivemode": true,
      "webhookEndpointId": "we_123",
      "webhookEndpointUrl": "https://api.example.com/api/webhooks/stripe/test",
      "webhookConfiguredAt": "2023-11-07T05:31:56Z",
      "maskedKey": "sk_test_...abcd",
      "lastSyncedAt": "2023-11-07T05:31:56Z",
      "lastSyncError": "<string>",
      "lastSyncCounts": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Stripe payments status

connections
object[]
required