- Using DIGIT-PLAYGROUND
- User
- Master Data V1
- Master Data V2
- Create Schema
- Search Schema
- Add Data
- Seach Data
- Update data
- Access-control
- Action
- Role
- Role-Action
- Workflow-v2
- WorkFlow
- Create new workflow entry for a given application number(businessId).
- Process search of the applicaition
- Get the list of workflow applications defined in the system.
- Get the count of applications satisfying the given criteria
- Get the nearing sla count of workflow applications defined in the system.
- Get the list of status count workflow applications defined in the system.
- Escalate
- BusinessServiceV2
- BusinessService
- Filestore
- Idgen
- Location
- Enc-Service
- Crypto
- Encrypts the given input value/s OR values of the object.
- Decrypts the given input value/s OR values of the object.
- Provide signature for a given value.
- Check if the signature is correct for the provided value.
- Deactivate the keys for the given tenant and generate new keys. It will deactivate both symmetric and asymmetric keys for the provided tenant.
- cryptoRotateAllKeys
- Crypto
- PG-Service
- URL-Shortening
- Indexer
- egov-indexer service
- This endpoint is used to start legacy index job to reindex records from DB. The data is fetched from DB by calling api mentioned in request in batches. The is useful when some record is present in DB but missing on index.
- This endpoint is used to start indexing job to reindex records from one index to another index.
- This endpoint is used to index one record on a index. The information to pick correct config is provided with the data to be indexed.
- Index data in row
- egov-indexer service
- PDF-Service
- PDF-Service endpoints
- Generate PDF and store output pdfs to filestore and return their filestoreids. The information is also saved into DB so that using _search endpoint we can retrieve already generated pdfs.POST
- Generates pdf without storing any information on filestore or in DB. The generated pdf would be returned as binary responsePOST
- Get filestoreids and other information about already generated pdf by searching on jobid or entityid with other optional search parametersPOST
- Report
- eGov-OTP
- User-OTP
- Localization
- Service Request
- Audit Service
Get filestoreids and other information about already generated pdf by searching on jobid or entityid with other optional search parameters
POST
/_search
PDF-Service endpoints
Last modified:2024-04-19 09:51:00
Request
Query Params
tenantid
string
optional
jobid
string
required
entityid
string
required
isconsolidated
string
optional
Body Params application/json
object {0}
Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://unified-dev.digit.org/pdf-service/v1/_search?jobid&entityid' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Pdf information successfully retrieved
application/json
Body
ResponseInfo
object
optional
message
string
optional
filestoreIds
array[string]
optional
jobid
string
optional
createdtime
number
optional
endtime
number
optional
tenantid
string
optional
totalcount
number
optional
key
string
optional
documentType
string
optional
moduleName
string
optional
Example
{
"ResponseInfo": {},
"message": "string",
"filestoreIds": [
"string"
],
"jobid": "string",
"createdtime": 0,
"endtime": 0,
"tenantid": "string",
"totalcount": 0,
"key": "string",
"documentType": "string",
"moduleName": "string"
}
🟠400Invalid input.
🟠404PDF with search parameters was not found
🔴500Error happened at server
Modified at 2024-04-19 09:51:00