PATCH applications/{applicationUid}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
applicationUid | globally unique identifier |
Required |
Body Parameters
JsonPatchDocumentName | Description | Type | Additional information |
---|---|---|---|
Operations | Collection of Operation |
None. |
Request Formats
application/json
Sample:
Sample not available.
text/json
Sample:
Sample not available.
application/xml, text/xml
Sample:
<JsonPatchDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Marvin.JsonPatch"> <ContractResolver i:nil="true" /> </JsonPatchDocument>
application/x-www-form-urlencoded
Sample:
Sample not available.
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": "9a5e559e-c6c6-4e86-b5d7-3ea191827222", "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": "5904799d-9f7d-4c46-abfc-0fa8575fd85f" }, "ApplicationStep": 1, "ApplicationType": 1, "AgreementConsents": [ { "Uid": "03881b2e-9af8-415f-91fa-cc2bee9a530e", "AgreementType": 1, "Initials": "sample string 2" }, { "Uid": "03881b2e-9af8-415f-91fa-cc2bee9a530e", "AgreementType": 1, "Initials": "sample string 2" } ], "Funding": null, "RegistrationFlowType": 1, "AccountUid": "76713d4b-bdeb-42c2-b618-57ce04c8c8c4", "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>76713d4b-bdeb-42c2-b618-57ce04c8c8c4</AccountUid> <AgreementConsents> <AgreementConsent> <AgreementType>CustomerAgreement</AgreementType> <Initials>sample string 2</Initials> <Uid>03881b2e-9af8-415f-91fa-cc2bee9a530e</Uid> </AgreementConsent> <AgreementConsent> <AgreementType>CustomerAgreement</AgreementType> <Initials>sample string 2</Initials> <Uid>03881b2e-9af8-415f-91fa-cc2bee9a530e</Uid> </AgreementConsent> </AgreementConsents> <ApplicationStep>UserDetails</ApplicationStep> <ApplicationType>Individual</ApplicationType> <ApplicationUid>9a5e559e-c6c6-4e86-b5d7-3ea191827222</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>5904799d-9f7d-4c46-abfc-0fa8575fd85f</ZaiusCustomerId> </User> </Application>