GET applications/{applicationUid}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
applicationUid | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ApplicationName | Description | Type | Additional 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": "762c899d-6689-4b1a-9eec-a87aa42dcb32", "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" }, "ApplicationStep": 1, "ApplicationType": 1, "AgreementConsents": [ { "Uid": "39958790-a5c4-4aed-b186-f43f65040fee", "AgreementType": 1, "Initials": "sample string 2" }, { "Uid": "39958790-a5c4-4aed-b186-f43f65040fee", "AgreementType": 1, "Initials": "sample string 2" } ], "Funding": null, "RegistrationFlowType": 1, "AccountUid": "83382cc8-86a1-4bc7-be84-ad0b18bfbb84", "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>83382cc8-86a1-4bc7-be84-ad0b18bfbb84</AccountUid> <AgreementConsents> <AgreementConsent> <AgreementType>CustomerAgreement</AgreementType> <Initials>sample string 2</Initials> <Uid>39958790-a5c4-4aed-b186-f43f65040fee</Uid> </AgreementConsent> <AgreementConsent> <AgreementType>CustomerAgreement</AgreementType> <Initials>sample string 2</Initials> <Uid>39958790-a5c4-4aed-b186-f43f65040fee</Uid> </AgreementConsent> </AgreementConsents> <ApplicationStep>UserDetails</ApplicationStep> <ApplicationType>Individual</ApplicationType> <ApplicationUid>762c899d-6689-4b1a-9eec-a87aa42dcb32</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> </User> </Application>