sandbox-api.akoya.com/manage/{version}/recipients/{recipientId}/apps
Get a paginated list of all your applications.
You can use the next and the prev links to page through the response. You can also pass a offset and a limit parameter to get a specific page. The default page size is 50, and the maximum allowed page size is 500.
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.
offset
integerNumber of skipped items (default = 0)
Example: 10
limit
integerNumber of items per page (default = 50, must be <=500)
Example: 2
200
OK
Response Body
page
object
total_elements
integer
links
object
next
object
href
string
prev
object
href
string
apps
array of objects
object
client_id
string
client_name
string
description
string
redirect_uris
array of strings
string
client_uri
string
logo_uri
string
contacts
array of strings
string
scope
string
owner
string
Headers
Content-Typestring
X-Akoya-Interaction-Idstring
const options = {
"method": "GET",
"headers": {
"accept": "application/json"
}
}};
fetch('sandbox-api.akoya.com/manage//recipients//apps?offset=&limit=', options)
.then(response => response.json())
.catch(err => console.error(err));