@authrocket/authrocket-node
Version:
AuthRocket library for Node
25 lines (19 loc) • 484 B
JavaScript
const Resource = require('./resource')
class Credential extends Resource {
constructor(client) {
super(client)
this.path = 'credentials'
this.rootElement = 'credential'
}
// params = {
// code: '123456'
// }
verify(id, params={}) {
if (!id)
return this.isBlankError()
const path = `${this.path}/${encodeURI(id)}/verify`
params = this.buildRoot(params)
return this.client.post(path, params)
}
}
module.exports = Credential