curl --request POST \
--url https://sandbox.deck.co/api/v1/link/sources \
--header 'Content-Type: application/json' \
--data '{
"link_token": "<string>",
"source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"search": "<string>"
}'
{
"sources": [
{
"source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"logo_url": "<string>",
"country": "<string>",
"website": "<string>",
"fields": [
{
"field_number": 123,
"field_name": "<string>",
"field_label": "<string>",
"field_value": "<string>",
"field_type": "Text"
}
]
}
]
}
Returns a list of data sources based on a few search parameters
curl --request POST \
--url https://sandbox.deck.co/api/v1/link/sources \
--header 'Content-Type: application/json' \
--data '{
"link_token": "<string>",
"source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"search": "<string>"
}'
{
"sources": [
{
"source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"logo_url": "<string>",
"country": "<string>",
"website": "<string>",
"fields": [
{
"field_number": 123,
"field_name": "<string>",
"field_label": "<string>",
"field_value": "<string>",
"field_type": "Text"
}
]
}
]
}
OK
The response is of type object
.
Was this page helpful?