sandbox-api.akoya.com/manage/{version}/recipients/{recipientId}/products
Get a list of all your purchased Akoya products.
version*
stringManagement API major version (e.g. v2)
recipientId*
stringYour recipient id. You may find your recipientId in the Data Recipient Hub under Team Management/Company Id.
200
OK
Response Body
products
array of objects
object
name
string
display_name
string
description
string
required
boolean
Headers
Content-Typestring
X-Akoya-Interaction-Idstring
401
Unauthorized
Response Body
code
integer
message
string
Headers
Content-Typestring
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));