Success Factors REST API OData Entity User does not return inactive users - sap-successfactors

Until 1,5 week ago, I was getting all user statuses from SuccessFactors OData User Entity via
REST GET
https://localhost:443/odata/v2/User
Now I noticed that inactive users (where status = 'f' )are not returned by this.
Does anyone have any information on this issue?
Thanks

It's not an issue. Success Factors does not return inactive users if not told.
You have to add a filter if you want to get inactive users.
https://<hostname>/odata/v2/User?$filter=status in 'active','inactive'&$format=JSON
Here is list of statuses:
list of statuses

Related

PayPal API List transactions for subscription: Pagination not working

According to the docs it should be possible to use pagination.
I call the endpoint with my subscription id and as a startdate I choose 01.01.2010 and enddate I choose today.
(/v1/billing/subscriptions/{id}/transactions)
I get returned only 30 items and I also do not see in my response the "total_items" value or anything else related to pages.
https://developer.paypal.com/docs/api/subscriptions/v1/#subscriptions_transactions
Do I miss something or is this just another bug in paypal?
My goal is it to get all transactions for a specific subscription.

Facebook Ads Insights API Not returning data for one ad

I'm trying to pull some data from Facebook Ads Insights API and I get the correct data from one campaign/ad and with a different campaign/ad I get nothing.
It's "" vs. "{\"data\":[]}" (one is nothing at at, one is empty result)
The ad that returns data has a status of "Not Delivering" and the one that doesn't return anything has a status of "inactive". I only have two ads to work with currently. Can I not get data from inactive ads through the API? In the web interface the data is there. Is there a switch or something for inactive ads that I might not have or I might be sending incorrectly?
EDIT:
Actually, if I switch the order of which ad I pull first it changes which one returns nothing. Does Facebook Marketing API not like you pulling ad data one after the other? What is going on here?

Bluemix added a PENDING state to user profiles

I am trying to print out this new state from the getUsers REST API. What field in the SoftLayer_User_Customer contains the new profile state PENDING?
Unfortunately, it's not possible to get that value from the customers records, it is only for internal purposes, by the way, that status means that the customer is pending for email confirmation. My apologies for the inconveniences

How do I query the Exchange Online REST API for a list of users, mailboxes and/or calendars?

Background
I'm able to query outlook.office365.com/api/v1.0/me/ for the current user that is logged in. But I'm unable to find a query that would give me a list of users. Below are the following queries I've tried without any luck.
outlook.office365.com/api/v1.0/users/
outlook.office365.com/api/v1.0/me/users/
This is the error I receive when I'm doing either of the queries.
https://www.dropbox.com/s/64o0mwj1w3uigk8/Screenshot%202015-07-09%2013.07.22.png?dl=0
Goal
I would like help finding the correct REST API queries for a list of users, mailboxes, and calendars.
Extra Findings
Note that while I was referring to https://msdn.microsoft.com/en-us/office/office365/api/complex-types-for-mail-contacts-calendar#RESTAPIResourcesUser I received the error listed above for the query'../me/users/$count' when trying to count the number of users.
We don't allow enumerating the list of users in a tenant using the outlook endpoint. you can however do this using the AAD graph api. For example:
https://graph.windows.net/contoso.com/users?api-version=2013-04-05
For calendars, you can see all calendars of a given user by enumerating those from ../me/calendars
Thanks for mentioning the $count issue, it was a bug which has been fixed. You should see it rolled out soon worldwide. But note that this will still not allow you to get a count of users as that collection is not enumerable. The $count will help with queries like ../me/messages/$count

Facebook analytics redacted

I am sending various events from my Unity iOS game to Facebook analytics and logging them. I can see all the events being registered properly. Till few days back I was able to see breakdown of events into sections like country, gender, region,etc. But now in place of details like how many downloads per country the breakdown is showing Redacted.
Has anyone faced this problem? What can be the cause of this?
This is most likely because the user count for the date range you're querying has dropped below 100 users. Demographic data is redacted below that level to protect user identity. For some reports (page likes, household income etc) the redaction level is slightly higher at 1000 users.