SparkLoop
  • API v2
    • Endpoints
      • Subscribers
        • Events
      • Referral Campaigns
        • Campaign Memberships
        • Subscribers
      • Partner Profile
        • Recommendations
        • Payouts
      • Publications
      • Upscribe
        • Recommendations
      • Partner Programs
      • Partner Network
        • Publications
        • Partner Programs
      • Webhooks
    • Schemas
      • Partner Profile Object
      • Partner Program Object
      • Publication Object
      • Subscriber Object
      • Campaign Object
      • Upscribe Object
      • Recommendation Object
    • Guides
      • How to use Upscribe via API
  • API v1
    • Campaigns
    • Subscribers
    • Events
    • Webhooks
  • Webhooks
  • Changelog
Powered by GitBook
On this page
  • Get payouts
  • Get payout

Was this helpful?

  1. API v2
  2. Endpoints
  3. Partner Profile

Payouts

Get payouts

GET https://api.sparkloop.app/v2/partner_profile/payouts

{
  "payouts": [
    {
      "uuid": "payout_9b59dc73ee6f",
      "amount_in_dollars": 50.0,
      "start_period": "2022-09-07T19:50:51.381Z",
      "end_period": "2022-10-07T19:50:51.381Z",
      "paid": false
    }
  ],
   "meta": {
     "per_page": 50, 
     "page": 1, 
     "total_pages": 1, 
     "total_payours": 1
   }
}

Get payout

GET https://api.sparkloop.app/v2/partner_profile/payouts/:identifier

Path Parameters

Name
Type
Description

identifier

String

Payout's UUID

{
  "payout": {
    "uuid": "payout_9b59dc73ee6f",
    "amount_in_dollars": 50.0,
    "start_period": "2022-09-07T19:50:51.381Z",
    "end_period": "2022-10-07T19:50:51.381Z",
    "paid": false
  }
}
PreviousRecommendationsNextPublications

Last updated 7 months ago

Was this helpful?