DigiOffice Gateway Web Services

<back to all web services

GetContacts

Get all contacts based on CustomerQuery ID

Requires Authentication
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

/**
* Get all contacts based on CustomerQuery ID
*/
class GetContacts implements IConvertible
{
    int? QueryID;

    GetContacts({this.QueryID});
    GetContacts.fromJson(Map<String, dynamic> json) { fromMap(json); }

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

    Map<String, dynamic> toJson() => {
        'QueryID': QueryID
    };

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

TypeContext _ctx = TypeContext(library: 'digiofficeapigateway.deltares.nl', types: <String, TypeInfo> {
    'GetContacts': TypeInfo(TypeOf.Class, create:() => GetContacts()),
});

Dart GetContacts DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /json/reply/GetContacts HTTP/1.1 
Host: digiofficeapigateway.deltares.nl 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"QueryID":0}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

[{"GlobalID":"00000000-0000-0000-0000-000000000000","Inactief":false,"Title":"String","FirstName":"String","MiddleName":"String","LastName":"String","FullName":"String","Suffix":"String","Birthday":"0001-01-01T00:00:00.0000000","Gender":"String","Categories":"String","CompanyName":"String","BusinessAddressStreet":"String","BusinessAddressPostalCode":"String","BusinessAddressCity":"String","BusinessAddressCountry":"String","OtherAddressStreet":"String","OtherAddressPostalCode":"String","OtherAddressCity":"String","OtherAddressCountry":"String","Home2TelephoneNumber":"String","HomeAddressStreet":"String","HomeAddressPostalCode":"String","HomeAddressCity":"String","HomeAddressCountry":"String","BusinessTelephoneNumber":"String","Business2TelephoneNumber":"String","MobileTelephoneNumber":"String","HomeTelephoneNumber":"String","Department":"String","JobTitle":"String","Profession":"String","Email1Address":"String","Email1DisplayName":"String","Email2Address":"String","Email2DisplayName":"String","Email3Address":"String","Email3DisplayName":"String","BusinessHomePage":"String","FileAs":"String","Spouse":"String","User1":"String","User2":"String","User3":"String","User4":"String","ImageID":"String","ImageLastUpdate":"0001-01-01T00:00:00.0000000","BusinessFaxNumber":"String","OtherFaxNumber":"String","HomeFaxNumber":"String"}]