Public
Documentation Settings

StrePay Documentation

StrePay REST APIs

Documentation

Request Basics

All requests need to pass Authentication token in the headers like this.

  • Make sure you pass Content-Type : application/json , Accept : application/json , and Authorization: api token headers
  • If you want to create object use POST method with JSON body.

If you want to retrieve object - use GET request.

3. Platform responds with very useful response headers, that you as a developer might wish to log

Note: you can get your token via API Settings [available to agent user only, for now.].

Remember api tokens are long-lived.

API EndPoint: https://strepay.com/api/v1/endpoint

StrePay WEBHOOK

The StrePay REST APIs use webhooks for transactions notification. Webhooks are HTTP callbacks that contains notification messages for transactions. When you generate an api token, you can create add a webhook url on which you will receive the transactions update notifications.

SAMPLE PHP CODE TO VERIFY WEBHOOK SIGNATURE

Loading