End-point overview #

URL:

https://crm-api-test.10npay.com/api/v1/Individual/source-of-funds


Method: GET

Headers #

accept: application/json

Authorization: Bearer {token}

Example Request #

To make a request to the source of funds endpoint, use the following curl command:

curl -X 'GET' \
'https://crm-api-test.10npay.com/api/v1/Individual/source-of-funds' \
-H 'accept: application/json' \
-H 'Authorization: Bearer {your_token_here}'

Note: Replace {your_token_here} with the actual Bearer token obtained from the /Auth/validate step.
Detailed Steps

Response #

Status Code: 200 OK

Response Body: A JSON array of sources of funds

Example Response #

[
	{
		"label": "Savings",
		"value": "1"
	},
	{
		"label": "Employment contract",
		"value": "2"
	},
	{
		"label": "Business activity",
		"value": "3"
	},
	{
		"label": "Pension",
		"value": "4"
	},
	{
		"label": "Scholarship",
		"value": "5"
	},
	{
		"label": "Inheritance",
		"value": "6"
	},
	{
		"label": "Donation",
		"value": "7"
	},
	{
		"label": "Benefits",
		"value": "8"
	},
	{
		"label": "Rent",
		"value": "9"
	},
	{
		"label": "Trade deal",
		"value": "10"
	},
	{
		"label": "Sales",
		"value": "11"
	},
	{
		"label": "Distribution",
		"value": "12"
	},
	{
		"label": "Investment income",
		"value": "13"
	}
]

Call Source of Funds Endpoint: Use the curl command provided to fetch the list of sources of funds. This list is necessary for completing the KYC process as it helps identify where the user’s money originates.

Parse Response: The response will be a JSON array of objects, each containing a label and a value. This information is used to populate the necessary fields in the KYC questionnaire.

Purpose of Fetching Source of Funds #

The source of funds endpoint provides a list of predefined sources representing where the user’s money comes from. This information is a critical part of the KYC verification process, helping financial institutions to assess the risk profile of the client and ensure compliance with regulatory requirements.

Snippet #

API Properties
Header parameters
Result of the call

Powered by BetterDocs