Skip to main content

Get a Custom Field

GET 

/v2/settings/extensions/custom-apis/:customApiId/fields/:customFieldId

Get a Custom Field

Request

Path Parameters

    customApiId uuidrequired

    The id of the Custom API.

    Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
    customFieldId uuidrequired

    The id of the Custom Field.

    Example: 859aeba1-03c2-4822-bd4c-89afce93d7eb

Responses

OK

Schema
    anyOf
    id uuid

    The unique identifier of the Custom Field.

    type string

    Specifies the type of the resource object, use custom_field for Custom Field.

    name string

    Possible values: non-empty and <= 255 characters

    Specifies the name of this Custom Field.

    description string

    Possible values: <= 255 characters

    Specifies the description for this Custom API.

    slug string

    Possible values: non-empty and <= 63 characters

    Specifies a slug that must be unique within the scope of the Custom API. This slug will be value as the key in the JSON Object in all entries.

    field_type string

    Possible values: [string, integer, boolean, float]

    Specifies the type of the field. This field cannot be updated.

    links object
    self uri
    meta Meta
    timestamps Timestampsrequired
    updated_at stringrequired

    Specifies the date the entity is created.

    created_at stringrequired

    Specifies the date the entity is last updated.

Loading...