Before you get started, please make sure you have a developer account registered with an admin user and a valid API access key called App-ID. Once you signed up for a developer account you will get:
app_id, or a unique code that identifies your app within our system.https://api.blockv.io/v1/user/login)HTTP Headers
Authorization: Bearer {access_token}App-Id: {app_id}Content-Type: {based on the method... will be specified in the request documentation}Content
All requests, with some noted exceptions, require you to pass an access_token, which takes the form of a JWT, and authenticates your user to our API.
An access_token can be obtained by completing a User Login request, which contains a token in the response body after successful authentication.
Once you have one access_token, future requests can be authenticated by specifying the access_token you received in the HTTP Authorization header of your requests.
Authorization: Bearer {access_token}
All requests made to our API require your app to identify itself. Once we have responded to your request for developer access, you will be given an app_id.
Requests to our API should specify the following header:
App-Id: {app id identifying your application}