| POST | /twilioError |
|---|
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
Object = TypeVar('Object')
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class TwilioError:
account_sid: Optional[str] = None
sid: Optional[str] = None
parent_account_sid: Optional[str] = None
timestamp: Optional[str] = None
level: Optional[str] = None
payload_type: Optional[str] = None
payload: Optional[str] = None
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /twilioError HTTP/1.1
Host: cpmwebservices-t.clarkpud.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
accountSid: String,
sid: String,
parentAccountSid: String,
timestamp: String,
level: String,
payloadType: String,
payload: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length 0