Skip to main content
Question

Any success with the API?

  • October 30, 2025
  • 5 replies
  • 99 views

Forum|alt.badge.img

Has anyone had much success using the API?

I was playing around with it several months ago and it was going well but then suddenly the channels API was returning 0 channels.
Users API only returns the same 4 users.
Device API works fine and returns as many devices as I ask for.

I checked again today and it is still the same behaviour.

5 replies

  • Escalations Manager, Technical Outcomes Consultant
  • October 31, 2025

Assuming you’re making a call to /api/v3/channeldirectory to simply list all channels:

This API call in particular needs some data up-front. At a minimum it requires the parameters networkID pageCount

In Postman this can be parameterized as such: 

https://api.cloud.appspace.com/api/v3/channeldirectory?includesubnetworkchannels=true&networkid={{networkID}}&limit=0&pagecount=1

You can more easily fetch the networkID you want to search by going into the console and going to Locations, click on the network in question, then review your browser URL header.

 


Forum|alt.badge.img
  • Author
  • New Participant
  • October 31, 2025

This makes no sense.

None of those are listed as required parameters.
Pagecount isn’t a parameter at all.
Creating a request in postman with the same settings still gives 0 results.
It used to work just fine and then one day it stopped working.

It literally returns this.
 

{

    "items": [],

    "start": 0,

    "limit": 0,

    "size": 0

}



It also used to give strange results with missing data for certain channels, but I was usually able to clear that up by deleting and recreating it.
If the permission list was blank removing groups and re-adding them solved that.
 


  • Escalations Manager, Technical Outcomes Consultant
  • October 31, 2025

It’s worth putting in a ticket so we can review this over a secure thread but then next thing I’d want to see is your request URL & structure. Something is likely missing.


Dawn Wayland
Forum|alt.badge.img
  • Community Manager
  • October 31, 2025

@Oldman Winter I certainly recognize your frustration when something stops working unexpectedly. We want to get this resolved for you quickly. You can submit a support ticket from our Support page , I would just be sure you read ‘Speed up your support: How to submit a ticket.’ and submit as much information as you can, to expedite the process.  Have a great weekend.  

 


Forum|alt.badge.img
  • Author
  • New Participant
  • November 12, 2025

Just an update after I figured out the problem.
Another POC changed the permissions with the account associated with the API key.

So make sure you have given the account access to all channels that you need to read and of course, any other permissions or roles depending on what info you are pulling.

Other than that you don’t need any parameters to start pulling the channel info from the directory.
Just note that unless you add the limit parameter you will only get 20 channels by default.

Appspace API Documentation


 


Dawn Wayland
Forum|alt.badge.img
  • Community Manager
  • November 12, 2025

@Oldman Winter I'm so glad you were able to determine the root cause of the issue! 🥳. This is great information for others to have, and thank you for taking the time to provide this detailed update.