mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Added update subscription API
refs https://github.com/TryGhost/members.js/issues/20 - Adds update subscription api for member - API allows updating plan for a particular subscription for logged-in member
This commit is contained in:
parent
f59d8213f6
commit
b865d002a9
1 changed files with 15 additions and 0 deletions
|
@ -170,6 +170,21 @@ function setupGhostApi() {
|
|||
}).catch(function (err) {
|
||||
throw err;
|
||||
});
|
||||
},
|
||||
async updateSubscription({subscriptionId, planName}) {
|
||||
const identity = await api.member.identity();
|
||||
const url = endpointFor({type: 'members', resource: 'subscriptions'}) + subscriptionId + '/';
|
||||
return makeRequest({
|
||||
url,
|
||||
method: 'PUT',
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
},
|
||||
body: JSON.stringify({
|
||||
identity: identity,
|
||||
planName
|
||||
})
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue