patreon-discord v0.0.5
patreon-discord
a patreon api v2 wrapper that helps you grab your patrons' data easily without hassle.
patreon's api documentation can be found here. do not be confused with other sections, only the "APIv2" sections.
don't think anyone will use this, but the patreon integration is pretty messy and isn't made discord integrations. this package is ideal for you to easily fix discrepancies between roles and pledges, that may occur due to declined payments, or for you to add external perks. c:
example usage
const { Campaign } = require('patreon-discord')
const myCampaign = new Campaign({
patreonToken: process.env.patreon_token,
campaignId: process.env.campaign_id
})
myCampaign.fetchPatrons(['active_patron', 'declined_patron'])
.then(patrons => {
// do something
})
myCampaign.fetchPatron('abcd-149328432-adsfdanca')
.then(patron => {
// do something
})reference
Campaign class
- takes two mandatory parameters,
patreonTokenandcampaignId
your patreon token can be found at the Developer Portal, called "Creator Access Token".
Campaign.fetchPatrons(patronStatusFilter[]<optional>) method
- takes one optional argument in an array format. you can input filters to choose what statuses of patrons' you'd like to receive. accepts 4 different options:
active_patron,declined_patron,former_patronandnull. null is possible according to Patreon's documentation and in my experience - this is if the user has never even pledged. - returns an array of
patronobject.
Campaign.fetchPatron(pledgeId) method
- inputs an id of a pledge
- returns a
patronobject.
patron object
provides all of the Member attributes - for detailed information on what each of these are, go to Patreon's documentation on "Member".
campaign_lifetime_support_centsnumbercampaign_entitled_amount_centsnumberemailstringfull_namestringis_followerbooleanlast_charge_datestring (in utc iso format)last_charge_statusstringlifetime_support_centsnumbernext_charge_datestring (in utc iso format)notestringpatron_statusstringpledge_cadencenumberpledge_relationship_startstring (in utc iso format)will_pay_amount_centsinteger
as well as some mandatory information:
pledge_id- this is the id of the pledge. this is also the ID you need to provide inCampaign.fetchPatron(pledgeId)if you want to fetch a specific patron.patron_id- this is the user/creator ID. the profile of the user can always be found viahttps://www.patreon.com/user/creators?u=PATRON_ID_HEREdiscord_user_id- can be null, if they have not linked their discord yet. this is the user id of their discord integration.currently_entitled_tier_idthis is the pledge's tier id. this allows you to figure out what tier the user is pledged to.
social_connectionsan object of their social connections. this is from the user scope from Patreon's docs.