Confluent Cloud

Add resource to Confluent account

Create a Confluent resource for the account associated with the provided ID.

post/api/v2/integrations/confluent-cloud/accounts/{account_id}/resources

Path parameters

account_idstring required

Confluent Account ID.

Request body

Example request

{
  "data": {
    "attributes": {
      "resource_type": "kafka",
      "tags": [
        "myTag",
        "myTag2:myValue"
      ]
    },
    "id": "resource-id-123",
    "type": "confluent-cloud-resources"
  }
}

Response

OK

Example response

{
  "data": {
    "attributes": {
      "id": "resource_id_abc123",
      "resource_type": "kafka",
      "tags": [
        "myTag",
        "myTag2:myValue"
      ]
    },
    "id": "resource_id_abc123",
    "type": "confluent-cloud-resources"
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.