get https://api-uat.gliderpay.com/v2/webhook/
Returns a specific webhook record.
A webhook identifier must be specified in the API request, this can be obtained while creating a new Glider Webhook
Response
Returns a specific webhook record.
A webhook identifier must be specified in the API request, this can be obtained while creating a new Glider Webhook
xxxxxxxxxx
const url = 'https://api-uat.gliderpay.com/v2/webhook/';
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));
Try It!
to start a request and see the response here! Or choose an example: