FrameAppWS

<back to all web services

SaveCitizenReportRQ

Requires Authentication
The following routes are available for this service:
All Verbs/citizen/saveReport
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


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class CoreRS:
    code: Optional[str] = None
    error_message: Optional[str] = None
    error_stack_trace: Optional[str] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SaveCitizenReportRQ:
    email: Optional[str] = None
    report_type_id: Optional[int] = None
    report_description: Optional[str] = None
    longitude: Optional[float] = None
    latitude: Optional[float] = None
    involved_in_indicent: Optional[int] = None
    is_anonymous: Optional[int] = None
    dynamic_fields: Optional[Dict[str, str]] = None

Python SaveCitizenReportRQ DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /citizen/saveReport HTTP/1.1 
Host: ws.jimsnwa.com 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"Email":"String","ReportTypeId":0,"ReportDescription":"String","Longitude":0,"Latitude":0,"InvolvedInIndicent":0,"IsAnonymous":0,"DynamicFields":{"String":"String"}}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"Code":"String","ErrorMessage":"String","ErrorStackTrace":"String"}