Number Formats
6 endpoints
Get number format
Get the number format configuration for a specific entity type
Parameters
entity_typerequiredResponses
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';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const result = await client.number-formats.list({8 entity_type: 'example',9});1011console.log(result);