UNPKG
mindbody-sdk-forked
Version:
latest (1.0.3)
1.0.3
A Node.js client for the MINDBODY API
github.com/wmgreene/mindbody
wmgreene/mindbody
mindbody-sdk-forked
/
lib
/
categories
/
usertoken.js
9 lines
(8 loc)
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module.exports =
function
(
client
)
{
return
{
// https://api.mindbodyonline.com/public/v6/usertoken/issue
issue:
function
(
details, callback
)
{ client.
request
({
verb
:
'POST'
,
url
:
'usertoken/issue'
}, {
body
: details}, callback); }, }; };