POST
/
organizations
/
{organizationId}
/
policies
curl --request POST \
  --url https://api.concord.tech/privacy-v1/organizations/{organizationId}/policies \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "id": "<any>",
  "dateCreated": "<any>",
  "dateUpdated": "<any>",
  "type": "aiPolicy",
  "name": "<string>",
  "status": "active",
  "description": "<string>",
  "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "answers": [
    {
      "questionId": "<string>",
      "answer": "<string>"
    }
  ],
  "html": "<any>"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "dateCreated": 123,
  "dateUpdated": 123,
  "type": "aiPolicy",
  "name": "<string>",
  "status": "active",
  "description": "<string>",
  "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "answers": [
    {
      "questionId": "<string>",
      "answer": "<string>"
    }
  ],
  "html": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
string
required

Body

application/json

Response

201
application/json
Default Response

The response is of type object.