POST api/JobPosts/SaveClientDetails

Request Information

URI Parameters

None.

Body Parameters

ClientDetails
NameDescriptionTypeAdditional information
UserId

string

None.

UserName

string

None.

UserContactNo

string

None.

DeviceID

string

None.

Platform

string

None.

LoggedIn

boolean

None.

VersionNo

decimal number

None.

CompanyId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "UserName": "sample string 2",
  "UserContactNo": "sample string 3",
  "DeviceID": "sample string 4",
  "Platform": "sample string 5",
  "LoggedIn": true,
  "VersionNo": 7.0,
  "CompanyId": 8
}

application/xml, text/xml

Sample:
<ClientDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models">
  <CompanyId>8</CompanyId>
  <DeviceID>sample string 4</DeviceID>
  <LoggedIn>true</LoggedIn>
  <Platform>sample string 5</Platform>
  <UserContactNo>sample string 3</UserContactNo>
  <UserId>sample string 1</UserId>
  <UserName>sample string 2</UserName>
  <VersionNo>7</VersionNo>
</ClientDetails>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

OutputBaseClass
NameDescriptionTypeAdditional information
IsCallSuccessful

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsCallSuccessful": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<OutputBaseClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models">
  <IsCallSuccessful>true</IsCallSuccessful>
  <Message>sample string 2</Message>
</OutputBaseClass>