Sequential-id Tutorial
Entity
schemaType
How to create a sequential ID schema
Create a sequence schema
curl -i -X POST
'https://api.emporix.io/sequential-id/{tenant}/schemas'
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
-H 'Content-Type: application/json'
-d '{
"name": "testSchema",
"schemaType": "orderNoSequence",
"preText": "C-__year__-__month__-",
"postText": "-D",
"maxValue": 999999999,
"numberOfDigits": 9,
"startValue": 3,
"placeholders": {
"__year__": {
"required": true
},
"__month__": {
"required": true
}
}
}'Retrieve the created schema
API ReferenceActivate the schema
API ReferenceGenerate a sequence ID based on the schema
API ReferenceVendor-specific invoice numbering
Last updated
Was this helpful?

