Skip to main content
POST
/
api
/
DocumentGeneration
/
srcd
Generate Document.
curl --request POST \
  --url https://api.example.com/api/DocumentGeneration/srcd \
  --header 'Content-Type: application/json' \
  --data '
{
  "isScreeningOrRefChecks": true,
  "isPdf": true,
  "templateId": 123,
  "entityId": 123,
  "playerId": 123,
  "placeholders": [
    {
      "placeholder": "<string>",
      "value": "<string>"
    }
  ],
  "useLatestRate": true
}
'
{
  "documentId": 123,
  "documentName": "<string>"
}

Body

application/json
isScreeningOrRefChecks
boolean
isPdf
boolean
templateId
integer<int32>
entityId
integer<int32>
playerId
integer<int32>
placeholders
object[] | null
useLatestRate
boolean

Response

200 - application/json

OK

documentId
integer<int32>
documentName
string | null