This endpoint is used to create a new API integration for the company.
The response for this request will be in JSON format with the following schema:
{
"type": "object",
"properties": {
"message": {
"type": "string"
},
"status": {
"type": "integer"
},
"data": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"value": {
"type": "string"
}
}
}
}
}
The response will include:
message: A string indicating the status message.
status: An integer representing the status of the request.
data: An object containing the id and value of the newly created API integration.
{
"message": "",
"status": 0,
"data": {
"id": 0,
"value": ""
}
}
Created
The response is of type object.