Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagesql
SET   IL_DB.declaration_request.authentication_method_current = Search MPI Response $.data.authentication_method
WHERE IL_DB.declaration_request.id = :id

...

Invoke Man Template Rendering Service to obtain printout form. Service description

Request parameters

ParameterSource
idDECLARATION REQUEST

...

Code Block
languagesql
SET   IL_DB.declaration_request.printout_content = Man Response $.data
WHERE IL_DB.declaration_request.id = :id

Generate upload URL

Get configuration environment parameter DECLARATION_REQUEST_OFFLINE_DOCUMENTS

...

Invoke Media Content Storage to get generate upload URL for each document in DECLARATION_REQUEST_OFFLINE_DOCUMENTS

Save all URLs to declaration DECLARATION_REQUEST_OFFLINE_DOCUMENTS to declaration request

Code Block
languagesql
SET   IL_DB.declaration_request.documents = :documents
WHERE IL_DB.declaration_request.id = :id

...

Code Block
languagexml
{
   "documents":[
      {
         "type":"PASSPORT",
         "url":"url"
      }
   ]
}


Generate verification code

...