Productsup
CDE APIApi referenceManagement

Add a default owner for an integrator.

Sign in to run requests against the CDE API.
POST
/defaults/integrators/{integratorId}/owner

Authorization

oAuth2AuthCode
AuthorizationBearer <token>

In: header

Path Parameters

integratorId*string
Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

owner?string

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://loading/defaults/integrators/497f6eca-6276-4993-bfeb-53cbbbba6f08/owner" \  -H "Content-Type: application/json" \  -d '{    "owner": "019e6e75-0d1a-7ee6-afa3-c40b9b6ce2e1"  }'
{
  "message": "Successfully added a new default owner for the integrator.",
  "resource": "integrator-defaults",
  "data": {
    "integrator": "019e6e75-0d07-7032-8aac-8047380f813e",
    "has-owner": true,
    "owner": "019e6e75-0d1a-7ee6-afa3-c40b9b6ce2e1",
    "dev-defaults": null,
    "prod-defaults": null
  }
}
{
  "message": "No existing organization member was not found when adding default owner.",
  "errors": []
}
{
  "message": "You have to be authorized to access this resource."
}
{
  "message": "Access denied for user."
}

How is this guide?