Rejection Reasons

6 endpoints

List rejection reasons

List all rejection reasons with optional filtering

Parameters
page
integerPage number
page_size
integerPage size
active_only
booleanFilter by active status
category
stringFilter by category
Responses
200Rejection reasons list
401Unauthorized
403Module not enabled
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.rejection-reasons.list({
8 page: 1,
9 page_size: 1,
10 active_only: true,
11 category: 'example',
12});
13
14console.log(result);