# Create an incrementor

Endpoint: POST /incrementors
Version: 1.0.457.36910
Security: OAuth2

## Request fields (application/json):

  - `LastNumber` (integer, required)
    Increments as IDs are generated.

  - `LeftPaddingCount` (integer, required)
    Use to enforce a minimum incrementor ID length. For example if your LastNumber is 0 and LeftPaddingCount is 4, your first generated ID will be 0001.

  - `ID` (string)
    The string "{replace-with-incrementor-ID}" can be passed into any ID field to populate the next ID in the sequence. It can also be prefixed with other ID safe characters.

  - `Name` (string)

## Response 201 fields (application/json):

  - `ID` (string)
    The string "{replace-with-incrementor-ID}" can be passed into any ID field to populate the next ID in the sequence. It can also be prefixed with other ID safe characters.

  - `Name` (string)

  - `LastNumber` (integer)
    Increments as IDs are generated.

  - `LeftPaddingCount` (integer)
    Use to enforce a minimum incrementor ID length. For example if your LastNumber is 0 and LeftPaddingCount is 4, your first generated ID will be 0001.

## Response 4XX fields (application/json):

  - `StatusCode` (integer)
    Example: "404"

  - `ErrorCode` (string)
    Example: "NotFoundError"

  - `Message` (string)
    Example: "Object not found"

  - `Data` (object)
    Example: {"ObjectType":"","ObjectID":""}


