uProofs | Docs
  • 👋 Welcome to uProofs
  • Contact Information
  • Tutorials
    • From 0 to 1
    • Encrypt data
  • Api Reference
    • Subscriptions
    • Identities
    • Assets
    • Proofs
  • For Developers
    • Postman Collection
Powered by GitBook
On this page

Was this helpful?

  1. Api Reference

Subscriptions

Get Subscriptions

GET https://api.uproofs.apio.cc/subscriptions

This endpoint allows you to get information on your subscription

Headers

Name
Type
Description

Authentication

string

You need to insert api key 🔑 . For Example "apikey 1234"

{
    "status": true,
    "data": {
        "assets": "Number of Asset",
        "proofs": "Number of Proofs",
        "type": "standard",
        "stripeId": "XXXXX",
        "uuid": "XXXX",
        "createdAt": "2021-07-02T18:40:20.579Z",
        "updatedAt": "2021-07-14T16:56:28.758Z"
    }
}
{
    "status": false,
    "error": {
        "statusCode": 401,
        "type": "Unauthorized",
        "message": "Missing authorization header",
        "name": "Unauthorized",
        "code": "Unauthorized"
    }
}
PreviousEncrypt dataNextIdentities

Last updated 3 years ago

Was this helpful?