PUT api/OuterGateIdentifyng/AddAttachToClient?clientId={clientId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

integer

Required

Body Parameters

IdentifyngAttachedModelIn
NameDescriptionTypeAdditional information
FileName

string

None.

FileBase64

string

Required

FileContentType

string

Matching regular expression pattern: ^(image/jpg|image/jpeg|image/png|application/pdf)$

Request Formats

application/json, text/json

Sample:
{
  "FileName": "sample string 1",
  "FileBase64": "sample string 2",
  "FileContentType": "sample string 3"
}

application/xml, text/xml

Sample:
<IdentifyngAttachedModelIn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.CodePlast.CommonModels.Models.Identifyng">
  <FileBase64>sample string 2</FileBase64>
  <FileContentType>sample string 3</FileContentType>
  <FileName>sample string 1</FileName>
</IdentifyngAttachedModelIn>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

OutComeBaseModelOut
NameDescriptionTypeAdditional information
NewIdentifier

integer

None.

Warning

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "NewIdentifier": 1,
  "Warning": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<OutComeBaseModelOut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.CodePlast.CommonModels.Models">
  <Message>sample string 2</Message>
  <NewIdentifier>1</NewIdentifier>
  <Warning>true</Warning>
</OutComeBaseModelOut>