Skip to main content
POST
/
v4
/
kfintech
/
generate
KFintech CAS Generator (Email Mailback)
curl --request POST \
  --url https://api.casparser.in/v4/kfintech/generate \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "email": "user@example.com",
  "from_date": "2023-01-01",
  "to_date": "2023-12-31",
  "password": "Abcdefghi12$",
  "pan_no": "ABCDE1234F"
}
'
{
  "status": "success",
  "msg": "CAS request submitted. Check email shortly."
}

Authorizations

x-api-key
string
header
required

Your API key for authentication. Use sandbox-with-json-responses as Sandbox key.

Body

application/json
email
string
required

Email address to receive the CAS document

Example:

"user@example.com"

from_date
string
required

Start date (YYYY-MM-DD)

Example:

"2023-01-01"

to_date
string
required

End date (YYYY-MM-DD)

Example:

"2023-12-31"

password
string
required

Password for the PDF

Example:

"Abcdefghi12$"

pan_no
string

PAN number (optional)

Example:

"ABCDE1234F"

Response

Request submitted successfully

status
string
Example:

"success"

msg
string
Example:

"CAS request submitted. Check email shortly."