GET /api/v1/custom_metadata/new
Returns a valid new metadatum value or validates passed in value for generator fields.

Params

Param name Description
custom_metadata_field
required

The ID of the metadatum field that metadatum is going to be related to.

Validations:

  • Must be a String

custom_metadatum
optional , nil allowed

Validations:

  • Must be a Hash

custom_metadatum[value]
optional , nil allowed

The value of the metadatum.

Validations:

  • Must be a String


POST /api/v1/custom_metadata
Create a new metadatum value.

Params

Param name Description
custom_metadata_field
required

The ID of the metadatum field that metadatum is going to be related to.

Validations:

  • Must be a String

project_id
optional

The ID of the project that metadatum is going to be related to.

Validations:

  • Must be a String

custom_metadatum
optional , nil allowed

Validations:

  • Must be a Hash

custom_metadatum[value]
optional , nil allowed

The value of the metadatum.

Validations:

  • Must be a String


PUT /api/v1/custom_metadata/:id
Update a metadatum.

Params

Param name Description
id
required

ID of the metadatum to be updated.

Validations:

  • Must be a String

custom_metadatum
optional , nil allowed

Validations:

  • Must be a Hash

custom_metadatum[value]
optional , nil allowed

The value of the metadatum.

Validations:

  • Must be a String


DELETE /api/v1/custom_metadata/:id
Delete a metadatum.

Params

Param name Description
id
required

ID of the metadatum to be deleted.

Validations:

  • Must be a String