PeopleForce
Core

Early access

Company API v4 is the next-generation API and is under active development. Endpoints and fields may still change.

Create a division

Creates a new division

POST
/api/v4/divisions

Creates a new division

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Creates a new division

Response Body

application/json

curl -X POST "https://example.com/api/v4/divisions" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "id": 0,  "name": "string",  "created_at": "2019-08-24T14:15:22Z",  "updated_at": "2019-08-24T14:15:22Z"}