Skip to main content

Get Certification Status

Get the certification status of your card or dataset. The entityType can either be CARD or DATA_SOURCE (Dataset).

Playground

Query Parameters

Property NameTypeRequiredDescription
entityIdStringRequiredId of the card or dataset you are requesting certification status for.
entityTypeStringRequiredThe entityType can either be CARD or DATA_SOURCE (Dataset).

HTTP Request

GET https://{instance}.domo.com/api/tags/v3/{entityType}/{entityId}/system/CERTIFIED/state


HTTP/1.1
Accept: application/json

HTTP Response

Returns status of 200 if successful.
HTTP/1.1 200 SUCCESS

{
    "tag": "CERTIFIED",
    "state": null,
    "metadata": null,
    "updated": null
}

Certify Content

Certify a Card or a Dataset.

Query Parameters

Property NameTypeRequiredDescription
entityIdStringRequiredId of the card or dataset you are requesting certification status for.
entityTypeStringRequiredThe entityType can either be CARD or DATA_SOURCE (Dataset).

HTTP Request

PUT https://{instance}.domo.com/api/tags/v3/{entityType}/{entityId}/system/CERTIFIED/state/ACTIVE

HTTP/1.1
Accept: application/json

HTTP Response

Returns status of 200 if successful.
HTTP/1.1 200 SUCCESS

Delete a Certification

Removes certification on a Card or Dataset.

Playground

Query Parameters

Property NameTypeRequiredDescription
entityIdStringRequiredId of the card or dataset you are requesting certification status for.
entityTypeStringRequiredThe entityType can either be CARD or DATA_SOURCE (Dataset).

HTTP Request

DELETE https://{instance}.domo.com/api/tags/v3/{entityType}/{entityId}/system/CERTIFIED/state

HTTP/1.1
Accept: application/json

HTTP Response

Returns status of 204 if successful.
HTTP/1.1 204 No Content