Skip to main content

Akoya
Documentation

Get Purchased Products

GET

sandbox-api.akoya.com/manage/{version}/recipients/{recipientId}/products

Get a list of all your purchased Akoya products.


Path Parameters

  1. version*

    string

    Management API major version (e.g. v2)

  2. recipientId*

    string

    Your recipient id. You may find your recipientId in the Data Recipient Hub under Team Management/Company Id.


Responses

  1. 200

    OK

    Response Body

      products

      array of objects

        object

          name

          string

          display_name

          string

          description

          string

          required

          boolean

    Headers

    1. Content-Typestring

    2. X-Akoya-Interaction-Idstring

  2. 401

    Unauthorized

    Response Body

      code

      integer

      message

      string

    Headers

    1. Content-Typestring

CTRL + K

Try it

Authorization

const options = {
	"method": "GET",
	"headers": {
		"accept": "application/json"
	}
}};
fetch('sandbox-api.akoya.com/manage//recipients//products', options)
  .then(response => response.json())
  .catch(err => console.error(err));