Update add-ons for organization
PUThttps://app.infodeck.io/api/organizations/:organizationId/add-ons
Update add-ons for organization
Request
Path Parameters
organizationId stringrequired
The ID of organization.
- application/json
Body
required
infodeckLns objectrequired
anyFeedback objectrequired
Responses
- 200
- 401
- 403
- 404
- application/json
- Schema
- Example (from schema)
- Example
Schema
data objectrequired
{
"data": {
"infodeckLns": {
"status": "string",
"tenantId": "string",
"apiKey": "string"
},
"anyFeedback": {
"status": "string"
}
}
}
{
"data": {
"infodeckLns": {
"status": "Success",
"tenantId": "b004ebe0-xxxx-xxxx-xxxx-dacd251b6f00",
"apiKey": "eyJ0exxxxxxxxxx4"
},
"anyFeedback": {
"status": "Success"
}
}
}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The request has not permission.
message stringrequired
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Unauthenticated",
"message": "Authentication is required and has failed or has not yet been provided."
}
The request has not permission.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The request has not permission.
message stringrequired
The request has not permission message.
{
"error": "string",
"message": "string"
}
{
"error": "Forbidden",
"message": "Access to the requested resource is forbidden."
}
The resource hasn't found.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The resource hasn't found.
message stringrequired
The resource hasn't found message.
{
"error": "string",
"message": "string"
}
{
"error": "ResourceNotFound",
"message": "The requested resource could not be found."
}
Authorization: http
name: usertype: httpscheme: bearerbearerFormat: JWTdescription: Get your API token via POST /authentications/tokens
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT 'https://app.infodeck.io/api/organizations/:organizationId/add-ons' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"infodeckLns": {
"status": "string",
"tenantId": "string",
"apiKey": "string"
},
"anyFeedback": {
"status": "string"
}
}'
ResponseClear