provider Single Sends POST
/marketing/singlesends/search @utdk/sendgrid
/marketing/singlesends/search Get Single Sends Search
**This endpoint allows you to search for Single Sends based on specified criteria.**
You can search for Single Sends by passing a combination of values using the `name`, `status`, and `categories` request body fields.
For example, if you want to search for all Single Sends that are "drafts" or "scheduled" and also associated with the category "shoes," your request body may look like the example below.
```javascript
{
"status": [
"draft",
"scheduled"
],
"categories": [
"shoes"
],
}
```
- page_size query
- integer
- page_token query
- string
Try it
Authentication
Configure credentials for Email Activity (beta)
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import sendgrid from '@utdk/sendgrid';
await sendgrid.postMarketingSinglesendsSearch()