No matches found in users.
Try switching to another result type using the tabs above.
You can access search results via JSON API by adding format=json
to your query:
https://codesearch.val.run/$%7Bsuccess?q=fetch&page=1&format=json
For typeahead suggestions, use the /typeahead
endpoint:
https://codesearch.val.run/typeahead?q=fetch
Returns an array of strings in format "username" or "username/projectName"
Found 8075 results for "fetch"(1174ms)
No matches found in users.
Try switching to another result type using the tabs above.
1415async function listWebhooks(apiKey: string, propertyId: string): Promise<CloudbedsWebhook[]> {
16const res = await fetch(`https://hotels.cloudbeds.com/api/v1.2/getWebhooks?propertyID=${propertyId}`, {
17headers: { Authorization: `Bearer ${apiKey}` },
18});
37});
3839const res = await fetch("https://hotels.cloudbeds.com/api/v1.2/deleteWebhook", {
40method: "POST",
41headers: {
135const lastSunday = today.startOf("week").minus({ days: 1 });
136137// Fetch relevant memories using the utility function
138const memories = await getRelevantMemories();
139