PUT api/recertapp?contactId={contactId}&applicationId={applicationId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
contactId

globally unique identifier

Required

applicationId

globally unique identifier

Required

Body Parameters

RecertApplicationUpdate
NameDescriptionTypeAdditional information
StreetAddress1

string

None.

StreetAddress2

string

None.

City

string

None.

Province

string

None.

Country

Country

None.

State

StateProvince

None.

PostalCode

string

None.

Telephone

string

None.

PhoneType

OptionSetValueModel

None.

Suffix

OptionSetValueModel

None.

Prefix

OptionSetValueModel

None.

Organization

IdNamePair

None.

DOB

date

None.

Request Formats

application/json, text/json

Sample:
{
  "StreetAddress1": "sample string 1",
  "StreetAddress2": "sample string 2",
  "City": "sample string 3",
  "Province": "sample string 4",
  "Country": {
    "Code": "sample string 1",
    "Id": "sample string 2",
    "Name": "sample string 3",
    "EmbargoCountry": true,
    "APPresScreen": true,
    "hasStates": true
  },
  "State": {
    "Code": "sample string 1",
    "Country": {
      "Code": "sample string 1",
      "Id": "sample string 2",
      "Name": "sample string 3",
      "EmbargoCountry": true,
      "APPresScreen": true,
      "hasStates": true
    },
    "Id": "sample string 2",
    "Name": "sample string 3"
  },
  "PostalCode": "sample string 5",
  "Telephone": "sample string 6",
  "PhoneType": {
    "Label": "sample string 1",
    "Value": 2
  },
  "Suffix": {
    "Label": "sample string 1",
    "Value": 2
  },
  "Prefix": {
    "Label": "sample string 1",
    "Value": 2
  },
  "Organization": {
    "Id": "5caf2c1b-bd01-4a77-a600-620e5e6fd34e",
    "Name": "sample string 2"
  },
  "DOB": "2024-10-18T09:19:07.0070418+00:00"
}

application/xml, text/xml

Sample:
<RecertApplicationUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models">
  <City>sample string 3</City>
  <Country>
    <APPresScreen>true</APPresScreen>
    <Code>sample string 1</Code>
    <EmbargoCountry>true</EmbargoCountry>
    <Id>sample string 2</Id>
    <Name>sample string 3</Name>
    <hasStates>true</hasStates>
  </Country>
  <DOB>2024-10-18T09:19:07.0070418+00:00</DOB>
  <Organization xmlns:d2p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
    <d2p1:Id>5caf2c1b-bd01-4a77-a600-620e5e6fd34e</d2p1:Id>
    <d2p1:Name>sample string 2</d2p1:Name>
  </Organization>
  <PhoneType xmlns:d2p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
    <d2p1:Label>sample string 1</d2p1:Label>
    <d2p1:Value>2</d2p1:Value>
  </PhoneType>
  <PostalCode>sample string 5</PostalCode>
  <Prefix xmlns:d2p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
    <d2p1:Label>sample string 1</d2p1:Label>
    <d2p1:Value>2</d2p1:Value>
  </Prefix>
  <Province>sample string 4</Province>
  <State>
    <Code>sample string 1</Code>
    <Country>
      <APPresScreen>true</APPresScreen>
      <Code>sample string 1</Code>
      <EmbargoCountry>true</EmbargoCountry>
      <Id>sample string 2</Id>
      <Name>sample string 3</Name>
      <hasStates>true</hasStates>
    </Country>
    <Id>sample string 2</Id>
    <Name>sample string 3</Name>
  </State>
  <StreetAddress1>sample string 1</StreetAddress1>
  <StreetAddress2>sample string 2</StreetAddress2>
  <Suffix xmlns:d2p1="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models.Helpers">
    <d2p1:Label>sample string 1</d2p1:Label>
    <d2p1:Value>2</d2p1:Value>
  </Suffix>
  <Telephone>sample string 6</Telephone>
</RecertApplicationUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.