digitaluapi

<back to all web services

ConfigurationChannelsLookup

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
GET/configuration_channels
import 'package:servicestack/servicestack.dart';
import 'dart:collection';

// @DataContract
class ConfigurationChannelsLookup implements IConvertible
{
    // @DataMember(Order=2)
    int? ConfigurationsId;

    // @DataMember(Order=3)
    int? ChannelsId;

    // @DataMember(Order=4)
    int? TemplatesId;

    ConfigurationChannelsLookup({this.ConfigurationsId,this.ChannelsId,this.TemplatesId});
    ConfigurationChannelsLookup.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        ConfigurationsId = json['ConfigurationsId'];
        ChannelsId = json['ChannelsId'];
        TemplatesId = json['TemplatesId'];
        return this;
    }

    Map<String, dynamic> toJson() => {
        'ConfigurationsId': ConfigurationsId,
        'ChannelsId': ChannelsId,
        'TemplatesId': TemplatesId
    };

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

TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: <String, TypeInfo> {
    'ConfigurationChannelsLookup': TypeInfo(TypeOf.Class, create:() => ConfigurationChannelsLookup()),
});

Dart ConfigurationChannelsLookup DTOs

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

HTTP + JSV

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

GET /configuration_channels HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

[
	{
		ConfigurationsId: 0,
		ChannelsId: 0,
		TemplatesId: 0,
		ResponseStatus: 
		{
			ErrorCode: String,
			Message: String,
			StackTrace: String,
			Errors: 
			[
				{
					ErrorCode: String,
					FieldName: String,
					Message: String,
					Meta: 
					{
						String: String
					}
				}
			],
			Meta: 
			{
				String: String
			}
		}
	}
]