provider Recipients GET
/recipients @utdk/mercury
/recipients Get all recipients
Retrieve a paginated list of all recipients. Use cursor parameters (start_after, end_before) for pagination.
- limit query
- integer
- start_after query
- string
- end_before query
- string
- order query
- enum: asc, desc
Try it
Authentication
Configure credentials for Mercury API
Code snippet
Updates live as you fill in the form above.
TypeScript
import mercury from '@utdk/mercury';
await mercury.getrecipients({
"limit": 1000,
"order": "asc"
})