duplicate_fund_in_target_allocation โ
duplicate_fund_in_target_allocation
Description โ
The same ISIN appears more than once in the target allocation.
HTTP Status โ
400 Bad Request
doc_url Format โ
The doc_url value is an absolute URL and changes by environment:
<docs-base-url>/errors/duplicate_fund_in_target_allocation
Typical Causes โ
- The allocation payload repeats the same fund.
- The client merged two entries for the same ISIN.
- A validation rule was violated while building the target allocation.
Example โ
Response:
json
{
"errors": [
{
"code": "duplicate_fund_in_target_allocation",
"message": "ISIN US0000000000 was found at least twice in the same target allocation",
"doc_url": "https://docs.example.com/errors/duplicate_fund_in_target_allocation"
}
]
}How To Fix โ
- Keep each ISIN only once in the allocation payload.
- Merge duplicate entries before submitting the request.
- Retry with a deduplicated allocation list.