Skip to main content
POST
/
api
/
v1
/
onboarding
/
product
Onboard a product with releated organizations
curl --request POST \
  --url https://notification.platform.dev.ai71services.ai/api/v1/onboarding/product \
  --header 'Content-Type: application/json' \
  --data '
{
  "product": {
    "active": true,
    "name": "<string>"
  },
  "organizations": [
    {
      "active": true,
      "name": "<string>"
    }
  ]
}
'
{
  "product": {
    "active": true,
    "apiKey": "<string>",
    "id": "<string>",
    "name": "<string>"
  },
  "organizations": [
    {
      "active": true,
      "apiKey": "<string>",
      "id": "<string>",
      "name": "<string>",
      "product_id": "<string>"
    }
  ]
}

Body

application/json

Onboarding Product Request body

product
object
required
organizations
object[]

Response

OK

product
object
required
organizations
object[]