# Create SDD collection limit Creates an SDD collection limit on the account specified in the request URL. Endpoint: POST /v1/persons/{person_id}/accounts/{account_id}/sdd_collection_limits Version: 1.0 ## Path parameters: - `person_id` (string, required) - `account_id` (string, required) ## Request fields (application/json): - `limit` (object, required) The limit of the SDD collection. - `limit.value` (integer) The amount, in Euro cents. Example: 10000 - `limit.unit` (string) The unit of the given value. Example: "cents" - `limit.currency` (string) The currency. Example: "EUR" - `comment` (string) A comment to append to the SDD collection limit. Example: "Comment" - `limit_type` (string) The type of SDD collection limit. Use the value . Enum: "CUSTOMER_REQUEST" ## Response 201 fields (application/json): - `id` (string) ID of the account limit. Example: "f4ed772c970e1096a73d9418192a2d0camsg" - `limit` (object) The amount of the limit. - `limit.value` (integer) The amount, in Euro cents. Example: 10000 - `limit.unit` (string) The unit of the given value. Example: "cents" - `limit.currency` (string) The currency. Example: "EUR" - `limit_type` (string) The SDD collection limit type. Enum: "EXTERNAL", "INTERNAL" - `current_limit` (boolean) Indicates whether the limit is the one currently applied to the account. Example: true - `created_at` (string) UTC timestamp from when the limit was created. Example: "2021-10-20T14:45:54Z" - `comments` (array) Optional comments applied to the limit. - `comments.content` (string) The content of the comment. Example: "text" - `comments.context` (string) The context for the comment. Example: "context" - `comments.created_at` (string) UTC timestamp from when the comment was created. Example: "2021-10-20T14:45:54Z" ## Response 403 fields (application/json): - `errors` (array) Example: [{"id":"7aaf4dfb-b7cd-4a50-a1d2-fad0e19624ef","status":403,"code":"unauthorized_action","title":"Unauthorized Action","detail":"Unauthorized action is not allowed."}] - `errors.id` (string) Error identifier - `errors.status` (integer) Error status - `errors.code` (string) Error code - `errors.title` (string) Error title - `errors.detail` (string) Error detail ## Response 404 fields (application/json): - `errors` (array) Example: [{"id":"93537ebd-c038-4a56-aa1b-17e540f57c3a","status":404,"code":"model_not_found","title":"Model Not Found","detail":"Couldn't find 'XXX' for id."}] - `errors.id` (string) Error identifier - `errors.status` (integer) Error status - `errors.code` (string) Error code - `errors.title` (string) Error title - `errors.detail` (string) Error detail