Update Integration Service
PUT/organizations/:organizationId/integrations/:serviceId
Update Integration Service
Request
Path Parameters
organizationId stringrequired
The ID of organization.
serviceId stringrequired
The ID of integration.
- application/json
Body
required
name stringrequired
The name of integration.
description string
The description of integration.
config object
The configuration of integration.
Responses
- 200
- 401
- 403
- 422
- application/json
- Schema
- Example (from schema)
- Example
Schema
data objectrequired
Data of the updated integration service.
id stringrequired
organizationId stringrequired
name stringrequired
description stringrequired
type stringrequired
config objectrequired
host stringrequired
apiKey stringrequired
authorization stringrequired
updatedBy stringrequired
updatedAtDateString stringrequired
updatedAt numberrequired
{
"data": {
"id": "string",
"organizationId": "string",
"name": "string",
"description": "string",
"type": "string",
"config": {
"host": "string",
"apiKey": "string",
"authorization": "string"
},
"updatedBy": "string",
"updatedAtDateString": "string",
"updatedAt": 0
}
}
{
"data": {
"id": "is-integrationServiceId",
"organizationId": "o-organizationId",
"name": "LNS-Service",
"description": "LNS-Service-Description",
"type": "InfodeckLNS",
"config": {
"host": "lns-hosto:8080",
"apiKey": "eyJ0exxxxxxxxxx4",
"authorization": "eyJhbxxxxxxxxxxg"
},
"updatedBy": "d6b0e137-xxxx-xxxx-xxxx-c944cc12a5f4",
"updatedAtDateString": "2024-01-31T00:00:00.000Z",
"updatedAt": 1706659200000
}
}
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 input data has invalid.
- application/json
- Schema
- Example (from schema)
- Example
Schema
error stringrequired
The input data has invalid.
message stringrequired
The input data has invalid message.
{
"error": "string",
"message": "string"
}
{
"error": "ValidationError",
"message": "Input data validation failed."
}
Loading...