- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
To get all records in a zone with some search criteria of record names irrespective of record types
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2021 05:14 AM
Hello,
We have a requirement to get all records in a zone irespective of record type with some search criteria on names using regular expression.
We tried to explore from API document and found two API’s as below .
<WAPI_URL>/allrecords?zone=info.com – Retrieve all records in a zone
<wapi_url>/record:host?name~=info.com&_return_fields=name – It will return only host records with search of name, but no zone parameter here and it stick to only host record type
Is there any way on API front to combine both queries in a single API to get all records by passing input as zone info and search criteria without sticking to only one record type.
Re: To get all records in a zone with some search criteria of record names irrespective of record ty
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2022 05:00 AM
Hi,
The name field is also searchable under the allrecords API endpoint:
<WAPI_URL>/allrecords?zone=info.com&name~=test
This will return records of all tyopes with the word test in them.
The name fields is available for search via
- ‘:=’ (case insensitive search)
- ‘=’ (exact equality)
- ‘~=’ (regular expression)
Regards,
Krishna Vasudevan