Developers
API ReferenceProject Numbering

Creates the ProjectNumbering resource.

POST
/project/project-numberings

Creates the ProjectNumbering resource.

Authorization<token>

Value for the Authorization header parameter.

In: header

Request Body

The new ProjectNumbering resource

TypeScript Definitions

Use the request body type in TypeScript.

name*string
Lengthlength <= 50
pattern*string
Lengthlength <= 100
counterPadLength*integer
Range0 <= value <= 6
counterNextValue?|
Range0 <= value
counterInterval?|

Value in

  • "P1M"
  • "P1Y"
isDefault*boolean
Defaultfalse

Response Body

curl -X POST "https://example.com/project/project-numberings" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "pattern": "string",    "counterPadLength": 0,    "isDefault": false  }'
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "name": "string",  "pattern": "string",  "counterPadLength": 0,  "counterNextValue": 0,  "counterInterval": "P1M",  "isDefault": true}