Trendsic Platform Service

<back to all web services

RecordsTerminologyRequest

Requires Authentication
The following routes are available for this service:
GET,OPTIONS/v1/records/terminology
import 'package:servicestack/servicestack.dart';

class RecordsTerminologyResponse implements IConvertible
{
    ResponseStatus? ResponseStatus;
    String? Mode;

    RecordsTerminologyResponse({this.ResponseStatus,this.Mode});
    RecordsTerminologyResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
        Mode = json['Mode'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!),
        'Mode': Mode
    };

    getTypeName() => "RecordsTerminologyResponse";
    TypeContext? context = _ctx;
}

class RecordsTerminologyRequest implements IConvertible
{
    RecordsTerminologyRequest();
    RecordsTerminologyRequest.fromJson(Map<String, dynamic> json) : super();
    fromMap(Map<String, dynamic> json) {
        return this;
    }

    Map<String, dynamic> toJson() => {};
    getTypeName() => "RecordsTerminologyRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: <String, TypeInfo> {
    'RecordsTerminologyResponse': TypeInfo(TypeOf.Class, create:() => RecordsTerminologyResponse()),
    'RecordsTerminologyRequest': TypeInfo(TypeOf.Class, create:() => RecordsTerminologyRequest()),
});

Dart RecordsTerminologyRequest 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.

GET /v1/records/terminology HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"Mode":"String"}