Skip to main content

Wallet API guide

Work in progress

This API is in development and not yet available.

[TODO: Brief summary of what this guide covers.]

Getting started​

For step-by-step instructions on getting your API keys, requesting an access token, and making your first API calls, see the Quick start.

Endpoints​

The following endpoints are available:

EndpointDescription
GET:/your-api-name/v1/[TODO: resource][TODO: What this endpoint does]
POST:/your-api-name/v1/[TODO: resource][TODO: What this endpoint does]

[TODO: Get or create a resource]​

The GET:/your-api-name/v1/[TODO: resource] endpoint [TODO: describe what it does].

Example request:

curl -X GET https://api.vipps.no/your-api-name/v1/[TODO: resource] \
-H "Authorization: Bearer YOUR-ACCESS-TOKEN" \
-H "Ocp-Apim-Subscription-Key: YOUR-SUBSCRIPTION-KEY"

Example response:

{
"[TODO: field]": "[TODO: value]",
"[TODO: field]": "[TODO: value]"
}