AIM Web Services

<back to all web services

AddContactRecordRequest

AddContactRecord web service.

The following routes are available for this service:
POST/api/AddContactRecord
import Foundation
import ServiceStack

/**
* AddContactRecord web service.
*/
// @DataContract
public class AddContactRecordRequest : BaseSecureRequest
{
    // @DataMember
    public var contact:String

    // @DataMember
    public var customerAcct:Int

    // @DataMember
    public var actionId:Int

    // @DataMember
    public var actionDate:Date?

    // @DataMember
    public var popUp:Bool

    // @DataMember
    public var topicId:Int?

    // @DataMember
    public var closed:Bool

    // @DataMember
    public var closedDate:Date?

    // @DataMember
    public var colorValue:Int

    // @DataMember
    public var overrideLanID:String

    // @DataMember
    public var formattedNotes:Bool

    // @DataMember
    public var note1:String

    // @DataMember
    public var note2:String

    // @DataMember
    public var note3:String

    // @DataMember
    public var attributes:[AttributeValuePair] = []

    // @DataMember
    public var attachments:[FileAttachment] = []

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case contact
        case customerAcct
        case actionId
        case actionDate
        case popUp
        case topicId
        case closed
        case closedDate
        case colorValue
        case overrideLanID
        case formattedNotes
        case note1
        case note2
        case note3
        case attributes
        case attachments
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        contact = try container.decodeIfPresent(String.self, forKey: .contact)
        customerAcct = try container.decodeIfPresent(Int.self, forKey: .customerAcct)
        actionId = try container.decodeIfPresent(Int.self, forKey: .actionId)
        actionDate = try container.decodeIfPresent(Date.self, forKey: .actionDate)
        popUp = try container.decodeIfPresent(Bool.self, forKey: .popUp)
        topicId = try container.decodeIfPresent(Int.self, forKey: .topicId)
        closed = try container.decodeIfPresent(Bool.self, forKey: .closed)
        closedDate = try container.decodeIfPresent(Date.self, forKey: .closedDate)
        colorValue = try container.decodeIfPresent(Int.self, forKey: .colorValue)
        overrideLanID = try container.decodeIfPresent(String.self, forKey: .overrideLanID)
        formattedNotes = try container.decodeIfPresent(Bool.self, forKey: .formattedNotes)
        note1 = try container.decodeIfPresent(String.self, forKey: .note1)
        note2 = try container.decodeIfPresent(String.self, forKey: .note2)
        note3 = try container.decodeIfPresent(String.self, forKey: .note3)
        attributes = try container.decodeIfPresent([AttributeValuePair].self, forKey: .attributes) ?? []
        attachments = try container.decodeIfPresent([FileAttachment].self, forKey: .attachments) ?? []
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if contact != nil { try container.encode(contact, forKey: .contact) }
        if customerAcct != nil { try container.encode(customerAcct, forKey: .customerAcct) }
        if actionId != nil { try container.encode(actionId, forKey: .actionId) }
        if actionDate != nil { try container.encode(actionDate, forKey: .actionDate) }
        if popUp != nil { try container.encode(popUp, forKey: .popUp) }
        if topicId != nil { try container.encode(topicId, forKey: .topicId) }
        if closed != nil { try container.encode(closed, forKey: .closed) }
        if closedDate != nil { try container.encode(closedDate, forKey: .closedDate) }
        if colorValue != nil { try container.encode(colorValue, forKey: .colorValue) }
        if overrideLanID != nil { try container.encode(overrideLanID, forKey: .overrideLanID) }
        if formattedNotes != nil { try container.encode(formattedNotes, forKey: .formattedNotes) }
        if note1 != nil { try container.encode(note1, forKey: .note1) }
        if note2 != nil { try container.encode(note2, forKey: .note2) }
        if note3 != nil { try container.encode(note3, forKey: .note3) }
        if attributes.count > 0 { try container.encode(attributes, forKey: .attributes) }
        if attachments.count > 0 { try container.encode(attachments, forKey: .attachments) }
    }
}

// @DataContract
public class BaseSecureRequest : BaseRequest
{
    /**
    * The Login Token return by the Security API. Required for secured calls.
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="The Login Token return by the Security API. Required for secured calls.", Name="Token", ParameterType="Header")
    public var token:String

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case token
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        token = try container.decodeIfPresent(String.self, forKey: .token)
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if token != nil { try container.encode(token, forKey: .token) }
    }
}

// @DataContract
public class BaseRequest : Codable
{
    /**
    * This is your AIM API Key provided by Tri-Tech
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="This is your AIM API Key provided by Tri-Tech", IsRequired=true, Name="ApiKey", ParameterType="Header")
    public var apiKey:String

    /**
    * The OAuthToken token return by AeServices30
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="The OAuthToken token return by AeServices30", IsRequired=true, Name="OAuthToken", ParameterType="Header")
    public var oAuthToken:String

    /**
    * The Device ID of the Mobile Device. Not used for non-mobile devices.
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="The Device ID of the Mobile Device. Not used for non-mobile devices.", Name="DeviceId", ParameterType="Header")
    public var deviceId:String

    /**
    * An identifier for your integration
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="An identifier for your integration", IsRequired=true, Name="AppId", ParameterType="Header")
    public var appId:String

    required public init(){}
}

// @DataContract
public class AttributeValuePair : Codable
{
    // @DataMember
    public var name:String

    // @DataMember
    public var value:String

    required public init(){}
}

// @DataContract
public class FileAttachment : Codable
{
    // @DataMember
    public var fileName:String

    // @DataMember
    public var base64Contents:String

    required public init(){}
}

// @DataContract
public class AddContactRecordResponse : BaseResponse
{
    // @DataMember
    public var refNumber:String

    required public init(){ super.init() }

    private enum CodingKeys : String, CodingKey {
        case refNumber
    }

    required public init(from decoder: Decoder) throws {
        try super.init(from: decoder)
        let container = try decoder.container(keyedBy: CodingKeys.self)
        refNumber = try container.decodeIfPresent(String.self, forKey: .refNumber)
    }

    public override func encode(to encoder: Encoder) throws {
        try super.encode(to: encoder)
        var container = encoder.container(keyedBy: CodingKeys.self)
        if refNumber != nil { try container.encode(refNumber, forKey: .refNumber) }
    }
}

// @DataContract
public class BaseResponse : Codable
{
    /**
    * 
    */
    // @DataMember
    // @ApiMember(DataType="BaseResponseResult", Description="", Name="Status", ParameterType="body")
    public var status:BaseResponseResult

    required public init(){}
}

// @DataContract
public class BaseResponseResult : Codable
{
    /**
    * 
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="", Name="StatusCode", ParameterType="body")
    public var statusCode:String

    /**
    * 
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="", Name="Login", ParameterType="body")
    public var login:String

    /**
    * 
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="", Name="ErrorCode", ParameterType="body")
    public var errorCode:String

    /**
    * 
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="", Name="ErrorDisplayText", ParameterType="body")
    public var errorDisplayText:String

    /**
    * 
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="", Name="ErrorMessage", ParameterType="body")
    public var errorMessage:String

    /**
    * 
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="", ExcludeInSchema=true, Name="DomainName", ParameterType="body")
    public var domainName:String

    /**
    * 
    */
    // @DataMember
    // @ApiMember(DataType="string", Description="", ExcludeInSchema=true, Name="IPAddress", ParameterType="body")
    public var ipAddress:String

    required public init(){}
}


Swift AddContactRecordRequest 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 /api/AddContactRecord HTTP/1.1 
Host: active-ewebservice.biz 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"Contact":"String","CustomerAcct":0,"ActionId":0,"ActionDate":"0001-01-01T00:00:00.0000000","PopUp":false,"TopicId":0,"Closed":false,"ClosedDate":"0001-01-01T00:00:00.0000000","ColorValue":0,"OverrideLanID":"String","FormattedNotes":false,"Note1":"String","Note2":"String","Note3":"String","Attributes":[{"Name":"String","Value":"String"}],"Attachments":[{"FileName":"String","Base64Contents":"String"}],"Token":"String","ApiKey":"String","OAuthToken":"String","DeviceId":"String","AppId":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"RefNumber":"String","Status":{"StatusCode":"String","Login":"String","ErrorCode":"String","ErrorDisplayText":"String","ErrorMessage":"String","DomainName":"String","IpAddress":"String"}}