Query First with list of properties to be returned

Is it valid to use the Query First API call with a list of properties?

Example URL would be:

https://api.backendless.com/<version>/data/<table-name>/first?props=prop1,prop2

Hi Roy.
Currently this combination of search parameters not implemented.
We will try to add this in the next iteration.
Regards,
Kate.

Thanks for the info.

Hi Roy!
Opportunity to search properties with find first/last already added.
Regards,
Kate.

The find first and last works great.

I’m getting the following error when adding properties to the search:

{“code”:3026,“message”:“Unable to find user by his name pattern: Entity with the specified ID cannot be found: Id - first&props=name,objectId,ownerId,updated,created”}

The URL i’m using is:
https://api.backendless.com/v1/data/Users/first&props=name,objectId,ownerId,updated,created

Please use correct request:

/v1/data/Users/first?props=name,objectId,ownerId,updated,created

That works. Thanks