GET applications/{applicationUid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
applicationUid

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Application
NameDescriptionTypeAdditional information
ApplicationUid

globally unique identifier

None.

User

User

None.

ApplicationStep

ApplicationStepType

None.

ApplicationType

ApplicationType

None.

AgreementConsents

Collection of AgreementConsent

None.

Funding

Funding

None.

RegistrationFlowType

RegistrationFlowType

None.

AccountUid

globally unique identifier

None.

AccountCode

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ApplicationUid": "05ccdc83-7106-4385-839a-2249f604edfc",
  "User": {
    "Email": "sample string 1",
    "Username": "sample string 2",
    "FirstName": "sample string 3",
    "MiddleName": "sample string 4",
    "LastName": "sample string 5",
    "SuffixType": 1,
    "PhoneNumber": {
      "Iso3CountryCode": "sample string 1",
      "AreaCode": "sample string 2",
      "LocalNumber": "sample string 3"
    },
    "SecurityQuestionType": 1,
    "SecurityAnswer": "sample string 6",
    "ZaiusCustomerId": "08bf7409-3fe4-4226-92f9-a56a9c6bf020"
  },
  "ApplicationStep": 1,
  "ApplicationType": 1,
  "AgreementConsents": [
    {
      "Uid": "f88e45bc-4931-40ba-b43f-4c81364bd431",
      "AgreementType": 1,
      "Initials": "sample string 2"
    },
    {
      "Uid": "f88e45bc-4931-40ba-b43f-4c81364bd431",
      "AgreementType": 1,
      "Initials": "sample string 2"
    }
  ],
  "Funding": null,
  "RegistrationFlowType": 1,
  "AccountUid": "a29ceecc-aa47-4b33-b9aa-cb70a844663c",
  "AccountCode": "sample string 2"
}

application/xml, text/xml

Sample:
<Application xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBI.WebAPI.RegistrationGateway.Business.Models.Registration">
  <AccountCode>sample string 2</AccountCode>
  <AccountUid>a29ceecc-aa47-4b33-b9aa-cb70a844663c</AccountUid>
  <AgreementConsents>
    <AgreementConsent>
      <AgreementType>CustomerAgreement</AgreementType>
      <Initials>sample string 2</Initials>
      <Uid>f88e45bc-4931-40ba-b43f-4c81364bd431</Uid>
    </AgreementConsent>
    <AgreementConsent>
      <AgreementType>CustomerAgreement</AgreementType>
      <Initials>sample string 2</Initials>
      <Uid>f88e45bc-4931-40ba-b43f-4c81364bd431</Uid>
    </AgreementConsent>
  </AgreementConsents>
  <ApplicationStep>UserDetails</ApplicationStep>
  <ApplicationType>Individual</ApplicationType>
  <ApplicationUid>05ccdc83-7106-4385-839a-2249f604edfc</ApplicationUid>
  <Funding i:nil="true" />
  <RegistrationFlowType>Regular</RegistrationFlowType>
  <User>
    <Email>sample string 1</Email>
    <FirstName>sample string 3</FirstName>
    <LastName>sample string 5</LastName>
    <MiddleName>sample string 4</MiddleName>
    <PhoneNumber>
      <AreaCode>sample string 2</AreaCode>
      <Iso3CountryCode>sample string 1</Iso3CountryCode>
      <LocalNumber>sample string 3</LocalNumber>
    </PhoneNumber>
    <SecurityAnswer>sample string 6</SecurityAnswer>
    <SecurityQuestionType>WhatWasYourChildhoodNickname</SecurityQuestionType>
    <SuffixType>I</SuffixType>
    <Username>sample string 2</Username>
    <ZaiusCustomerId>08bf7409-3fe4-4226-92f9-a56a9c6bf020</ZaiusCustomerId>
  </User>
</Application>