whether I use the lastonline endpoint https://api.roblox.com/users/[USERID]/onlinestatus/, or the new presence one https://presence.roblox.com/docs#!/Presence/post_v1_presence_users, it's returning different dates and times for a specific user, lastOnline": "2022-02-25T06:56:39.283Z" from the presence one, 25-02 is the date their account was created, & "LastOnline":"2022-08-08T06:32:36.567-05:00" from the lastonline endpoint, date is right, given that the user was showing online and in a game today on the website portal, but the time is wrong
Related
Im stuck.I have 3 fields, field.date contract_start which the user enters the date they wish the contract to start,field.date duration which the user selects how much they want the contract to last.My issue is that i have a third field called contract expired in which i want it to be show automatically the result of the first two fields.Any suggestions?
Havent tried much because i cant think of anything.
in auth0 the user is active only if has authenticated in the last 30 days.
I have not found how to modify this value programatically
Is there a way to modify this value from 30 to 60 ?
Auth0 uses the concept of "active user" to determine how many users are using your applications, in order to charge you for the different pricing plans: https://auth0.com/pricing
If users don't log in for 30 days they will not count towards this total, but they will still be able to log in any time they want. This value can't be modified, for obvious reasons.
We have following task:
In the Marketing Cloud there are few journeys created by Journey Builder. They all are assigned to different Data Extensions via Event Source.
I'm going to receive all Data Extension rows that participate in specific Journey. Also we need to retrieve basic statistics by participants that shows us actual status of participant (data extension row in journey) like: what is the current place in journey for participant (received first email, received sms in line after first email etc.).
To retrieve all participants I suspect we have to use:
GET /interaction/v1/eventDefinitions/{eventDefinitionId}
where eventDefinitionId is Id from
GET /interaction/v1/interactions/{journeyId}
please correct me if I'm wrong.
The question is if there is some API that allows to retrieve statistic data described below.
Thanks,
Roman
I am looking for a way to get only 'new' transactions from specific account item. I.e. only transactions that was posted to account after I made previous transactions fetch/search.
For example I have the following scenario:
I have add item to consumer. Lets say consumer have 1 account item named 'BankAccount1'.
I fetch/search ALL transactions for some BankAccount1 and store transactions locally.
Now I need a way to get only new transactions on periodic basis. I.e. only transactions that was posted to 'BankAccount1' after previous fetch/search call. Is it possible to do this or I need to get all transactions every time and just skip transactions with Id which already present locally? If transaction Id is unique and incremental (did they?) maybe its possible to save last fetched transaction Id, and on next time get only transactions with Id > prevFetchId (what API to use if its possible)?
p.s.
I am using container based approach REST API.
As per your question, I can infer that you are going to store transactions locally in your DB. In that case Yodlee recommend to use Procedural Data Extracts, using which you can keep your DB in sync with Yodlee Cloud. You can find more details about it here.
Yodlee recommends you to pass date range in the executeUserSearchRequest API to get the transactions for any specific duration,as getting only new transactions may cause some issues. This is why Yodlee recommends to have few days of overlap, this will help you in not missing any transaction.
Transaction ID would be unique but it may not be incremental.
Is there way to search first name and last name for linkedin connection filter using LinkedIn API?
Suppose I am authenticated by linkedIn and show connection in popup.LinkedIn connection response only 500 connection one time request. So I do paging 500 connection. But I want to send invitations to two persons, so I want to give search widget by first name and last name from my LinkedIn connections.
You could use the People Search API to search on first and last name, restricting the search to just your connections:
http://api.linkedin.com/v1/people-search?first-name=Clair&last-name=Smith&facet=network,F
Update:
In terms of 'filtering' the returned values to remove the current user making the call from the result set, you should check for the returned user's relationship to the viewer:
http://api.linkedin.com/v1/people-search:(people:(id,first-name,last-name,relation-to-viewer:(distance)))?first-name=Clair&last-name=Smith&facet=network,F
Then check the results, and remove the users that have a relation-to-user of 0.