# Create a functional area type

Adds a category that functional areas can be filed under. Point a functional area
at it with `headcount_functional_area_type_id` on the create or update endpoint for
that area.
**A type created without `sort_order` comes back without that field**, rather than
with its stored default of `0`. Read the type back if you need its complete state.

Endpoint: POST /api/v2/headcount/functionalarea/type
Version: 2.0.0
Security: default

## Header parameters:

  - `Rosterfy-Platform` (string)

## Request fields (application/json):

  - `name` (string, required)
    The name of the group type. Required. Sending a plain string sets the name for the account's default language; it is returned as a plain string in the language of the request.

  - `sort_order` (integer)
    Where this type sits when types are listed together. Lower values come first, and types sharing a value keep no guaranteed order between them. Defaults to `0`.

## Response 201 fields (application/json):

  - `object` (object)

  - `object.id` (integer)

  - `object.name` (string)

  - `object.sort_order` (integer)

  - `object.uuid` (string)

  - `nice` (array)

  - `relations` (array)

  - `permissions` (object)

  - `permissions.read` (boolean)

  - `permissions.update` (boolean)

  - `permissions.delete` (boolean)

