DocuSign API Template Search by Name Limits - docusignapi

I'm currently trying to utilize the Templates list API with the search_text query string parameter. When I send a value that exceeds 48 characters, it will not return anything. Does anyone know if there is an assumed/imposed length restriction for using search_text?
Example GET Urls:
Works: /Templates?search_text=Universal Power Purchase Agreement - Massachuset
Does not work: /Templates?search_text=Universal Power Purchase Agreement - Massachusett

You've crossed the maximum length of the search_text parameter. Trying to use a search term that's more than 48 characters will result in the search failing and zero results being returned.

Related

How to use ODATA skip and top on Power Automate SharePoint GetItems?

I need to get all the items of a SharePoint list and send as JSON
But the default is 100
If I set a larger number like 10000 it gives this error on the flow:
The attempted operation is prohibited because it exceeds the list view threshold.
So I am trying to get it in batches of 350 items.
But how can I use the Filter Query to start at a position x and return y items?
I tried
$skip eq 350
But this error occurs:
Column 'skip' does not exist
I think your question has 2 layers to it.
To increase the number of items returned by the Get Items Actions from Sharepoint you need click on the three dots on the left side of the action, and then go to Settings and you will see the image below, then set the size to 5000, that means your Get Items action will now return a maximum of 5000 items.
$top and $skip - I am not too confident what you are trying to do with this but perhaps share a bit more context, it sounds like you want to build a dynamic pagination ? Please explain this part unless the first point already achieve what you were aiming for

DocuSign REST Api String field limits

The DocuSign REST API has some descriptions that include the width for string fields. But many string fields don't have a width in the description. I have found references here and their site to some of those being 100 characters. Is there a Docusign default max length for these string fields that don't have widths defined?
The reason for this is that some data is going to be extracted, and stored in a database table for analysis.
I've gone over the Swagger, the DocuSign REST API documentation pages, and a bunch of the Stackoverflow pages.
100 is probably a good default maximum length if you don't have any documentation saying otherwise for this specific field.
If you have a need to confirm a specific field maximum length - I can inquire about this for you. I do know this limit (100) as the right maximum for several specific fields.

Getting SharePoint List Content Types

Currently we are getting all lists in all sub sites using below REST query.
'/_api/Web/Webs?$expand=Lists&select=Title,id,ParentWebUrl'
now we would like to get the all content types that are used in those lists as well. Tried expanding ContentTypes, but could not get it to work.
Can anyone help to get content types belong to those lists? Even if filtering by content type in the REST query it self is fine.
or is there any way to do this in search results of lists?
After searching everywhere and getting no answers here, I've come to the conclusion there is no possibility of doing this way. So, I've used SharePoint Search services to get my results.
querytext = 'path:"your site collection path" AND (ContentClass:"STS_List_GenericList" OR ContentClass:"STS_List_DocumentLibrary")';
Later I decided to add listIDs to the query as I was getting ListIDs from previous Item search.
querytext = '(ListID:"Your list1 ID" OR ListID:"Your list2 ID" OR ListID:"Your listn ID")" AND (ContentClass:"STS_List_GenericList" OR ContentClass:"STS_List_DocumentLibrary")';
The issue was now if the list IDs exceed more than 75, the querytext max character exceeds and no results was received.
After searching a way to increase the maximum limit and finding out there is no way to do it, I divided the list IDs into a set 75 IDs and send separate requests for each set, then combined all together.
You can read it how it was done here Batch Search requests
This is the REST call for a SharePoint Online tenant (you did not specify version). If you iterate your through your list and call this for each list, you can summarize what content types are on your site.
https://YOURTENNANT.sharepoint.com/sites/YOURSITE/_api/lists/getbytitle('YOURLISTNAME')/contenttypes

Google Custom Search retrieve all the results, is it possible?

I'm starting to use the Google Custom Search Engine in order to retrieve a temporal use of some selected word in an online newspaper.
I see that for example my result provides a total of 22000 retrieved articles. I tried to retrieve pages after the 100 index but I can't get any result.
I also tried to search directly on the google web page, but I see that after the 10 page I can't go further, so this only show me the first 1000 result at max.
Does it is possible to retrieve every single result or I've to get just only a small portion of that?
Thanks

Inconsistencies with Flickr API Search vs www.flickr.com

There is a sort of a discrepancy in searching via the API endpoint provided by Flickr and when you actually search in Flickr via their text box search. When searching for certain words like Jerry Brown using flickr.photos.search I get different set of results when compared to searching directly on flickr.com.
There are no additional parameters provided for the API End point apart from the *per_page* and the page option, which defaults to 1.
This is the reason why it differs
Flickr Search (flickr.com) - displays the search results by relevance.
If NO Argument is specified to sort in the flickr.photos.search API. Then it defaults to Recent
Example
http://www.flickr.com/search/?q=cat&f=hp
http://www.flickr.com/services/api/explore/flickr.photos.search
Fill in the text = cat
sort = relevance
per_page = 1
You can verify the result by appropriately constructing the image URL as per http://farm{farm-id}.static.flickr.com/{server-id}/{id}_{secret}.jpg

Resources