Credentials

12 endpoints

List credentials

List credential definitions for the authenticated tenant with optional filtering

Parameters
type
stringFilter by type
status
stringFilter by status
oauth2_provider
stringFilter by OAuth2 provider
search
stringSearch by name
include_expired
booleanInclude expired credentials
limit
integerMaximum results
offset
integerOffset for pagination
Responses
200Successfully retrieved credentials
401Authentication required
403Access denied or module 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.credentials.list({
8 type: 'example',
9 status: 'example',
10 oauth2_provider: 'example',
11 search: 'example',
12 include_expired: true,
13 limit: 1,
14 offset: 1,
15});
16
17console.log(result);