Number Formats

6 endpoints

Get number format

Get the number format configuration for a specific entity type

Parameters
entity_typerequired
stringEntity type
Responses
200Successfully retrieved number format
400Invalid input data
401Authentication required
403Access denied
404Number format not found
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.number-formats.list({
8 entity_type: 'example',
9});
10
11console.log(result);