DELETE | /integrations/{integrationId} |
---|
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
# @Api(Description="Delete the specified integration")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class DeleteIntegration(IDelete):
"""
Delete the specified integration
"""
# @ApiMember(Description="The ID of the integration to delete")
integration_id: Optional[str] = None
"""
The ID of the integration to delete
"""
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
DELETE /integrations/{integrationId} HTTP/1.1 Host: team.evovoice.io Accept: text/jsonl