Hi all i'm new to adwords api. im using v201101 version
i'm creating 3 adrgroups to a one campaign at a time using adgroupservice mutate method.
im getting AdGroupReturnValue as return value.
but problem is if one adgroup creation is failed,remaining adgroups are also failed.
Thanks
I think that the current version of the AdWords API only supports partial failure for Criterion (keywords/placements etc). Other entity types will either all fail or all commit so you need to validate them first yourself to make sure they won't fail.
Related
when I make a call to JIRA API the response contain a large number of custom field with different IDs.
It's possible resolve it directly into API response?
I just try to call api on /rest/api/2/field to obtain all jira custom fields, but after that I should do a manual mapping script, it's soo annoing. There is a solution for this problem?
In the next time I need to export, for every issue, antire activity, attacchments and comments to store in external archive that can be consult in future.
We're looking for a way to get a list of all currently active PSTN calls being made into MS Teams. We've tried this:
https://learn.microsoft.com/en-us/graph/api/callrecords-callrecord-getpstncalls?view=graph-rest-beta
That's almost exactly what we need except records do not seem to appear here until the call has ended. What we need for the app we're trying to build is live call records.
We've also tried it by creating subscriptions and getting the ID of specific calls then looking up call records, but this data also appears to be delayed.
Is there a method we're missing here, or equally, is this something that may be added to the API some point soon?
Currently there is no graph API to get a list of active PSTN calls in Teams.
Microsoft will always focus on customer’s feedback and experience, some new features would be added to the services based on customers' feedback in the future, we also recommend you give your new idea in Teams UserVoice here.
They clearly mentioned in the document, we can not fetch the details directly. But you can fetch the records from your application. Using app side bearer token.
I am migrating from EWS to Microsoft graph and having problem in replacing flow "ExchangeService.syncFolderItems".
ChangeCollection<ItemChange> changedItems = exchangeService.syncFolderItems(calendarFolder.getId(),
FirstClassProperties, null, 512, NormalItems, syncState);
This gives me all the changes since last sync state with change type.
Now I need to replace this with Microsoft graph.
I saw Get delta api in Microsoft graph and also how to call it recursively using stale token. My query is, Get delta api is not returning the change Item type. Could someone suggest me the best way to implement this in Microsoft graph? Maybe the Apis that I need to use for this?
Note:This flow will be called by my service to get changes after fixed interval of time. Also I saw subscriptions ( https://learn.microsoft.com/en-us/graph/api/resources/subscription?view=graph-rest-1.0 )but not sure that could be used in my case as my service will be making a call to get changes for a meeting room after a fixed scheduled interval of time.
I am stuck here. Please help. Thanks in advance.
Deleted events will have a #removed property and only provide the id of the object as denoted here https://learn.microsoft.com/en-us/graph/delta-query-overview#resource-representation-in-the-delta-query-response
Updated objects will only include the updated properties and added objects should include all the data available. It's up to the 3rd party application (your app) to maintain a state on it's side to be able to differentiate between updated and created objects when using Delta queries.
Combining webhooks with Delta to trigger the sync instead of relying on a timer is a good approach to provide an end user experience that feels more real time
I need to be able to create a new assignment with a due date and to be able to update an existing assignment with a due date. I have gone through the documentation on the website but its still not clear to me how we would need to do that. Any advice would be appreciated.
I believe that, when you use the API route to create a new dropbox folder on the LMS you provide the due date (among other properties) in the JSON structure you provide the call. This is also true of the route to update a dropbox folder's properties.
So as the question states, I have a dynamoDB setup from which I am fetching data. My User end is configured in iOS, hence I am using the AWS iOS SDK. Although the documentation is alright, but its outdated a lot, and going through the documentations, many classes are deprecated.
I have 2 questions -
I have to fetch the latest entry from the DB always, so I am doing this by setting the scanforward = false and limit = 1 . Now I am calling query method from the dynamoDBObjectMapper, but there is also load method which also can be configured to do the same. My first question is that what is the difference between query and load if I have to fetch only the latest entry in the DB. Also what is the correct way to retrieve it?
I have to fetch this data in the most instantaneous way possible. I know about DynamoDBStream, but that is NOT an option. Basically I have to implement a long polling kind of feature, where I will get a call? whenever any data is changed OR continuously fetch data from the dynamoDB at a particular interval. Shall i use NSTimer and the same method call (load vs query) to fetch the latest entry in the DB?
Any help is greatly appreciated. Also if any developer working in Amazon can see this question, please remove the old documentation from AWS console and keep the latest ones. There are 5 documentation on the same thing, and all of them are outdated and deprecated.
Thanks for pointing that out. Can you give the links of the documentation that has deprecated classes? We will try to keep the latest ones and remove if there are any redundant deprecated references.
load() API is used to retrieve an item: Using an object's primary key load the corresponding item from the database. Look for an example here: http://docs.aws.amazon.com/mobile/sdkforios/developerguide/dynamodb-object-mapper.html under "Retrieve an item" section.
query() API can be used to return any number of records that match the query. The query API enables you to query a table or a secondary index.
To answer your question, if you know the primary key of the record that you are trying to retrieve, you can use load() API, otherwise use query() API.
DynamoDBStreams work well for your use case. Otherwise you can intgerate AWS Lambda with DynamoDB table to do polling which will be cleaner than a timer based approach. This question is partially answered here: Hooks for AWS DynamoDB streams