DictKey represents a PIX key registered in Bacen's DICT system.
:id
[string, default nil]: DictKey object unique id and PIX key itself. ex: "tony@starkbank.com", "722.461.430-04", "20.018.183/0001-80", "+5511988887777", "b6295ee1-f054-47d1-9e90-ee57b74f60d9":type
[string, default nil]: PIX key type. ex: "email", "cpf", "cnpj", "phone" or "evp":name
[string, default nil]: account owner full name. ex: "Tony Stark":owner-type
[string, default nil]: PIX key owner type. ex "naturalPerson" or "legalPerson":ispb
[string, default nil]: ISPB code used for transactions. ex: "20018183":branch-code
[string, default nil]: bank account branch code associated with the PIX key. ex: "9585":account-number
[string, default nil]: bank account number associated with the PIX key. ex: "9828282578010513":account-type
[string, default nil]: bank account type associated with the PIX key. ex: "checking", "saving" e "salary":status
[string, default nil]: current PIX key status. ex: "created", "registered", "canceled" or "failed":account-created
[string, default nil]: creation datetime of the bank account associated with the PIX key. ex: "2020-11-05T14:55:08.812665+00:00":owned
[string, default nil]: datetime since when the current owner hold this PIX key. ex : "2020-11-05T14:55:08.812665+00:00":created
[string, default nil]: creation datetime for the PIX key. ex: "2020-11-05T14:55:08.812665+00:00"DictKey represents a PIX key registered in Bacen's DICT system. ## Parameters (optional): - `:id` [string, default nil]: DictKey object unique id and PIX key itself. ex: "tony@starkbank.com", "722.461.430-04", "20.018.183/0001-80", "+5511988887777", "b6295ee1-f054-47d1-9e90-ee57b74f60d9" ## Attributes (return-only): - `:type` [string, default nil]: PIX key type. ex: "email", "cpf", "cnpj", "phone" or "evp" - `:name` [string, default nil]: account owner full name. ex: "Tony Stark" - `:tax-id [string, default nil]: tax ID (CPF or CNPJ) with or without formatting. ex: "01234567890" or "20.018.183/0001-80" - `:owner-type` [string, default nil]: PIX key owner type. ex "naturalPerson" or "legalPerson" - `:ispb` [string, default nil]: ISPB code used for transactions. ex: "20018183" - `:branch-code` [string, default nil]: bank account branch code associated with the PIX key. ex: "9585" - `:account-number` [string, default nil]: bank account number associated with the PIX key. ex: "9828282578010513" - `:account-type` [string, default nil]: bank account type associated with the PIX key. ex: "checking", "saving" e "salary" - `:status` [string, default nil]: current PIX key status. ex: "created", "registered", "canceled" or "failed" - `:account-created` [string, default nil]: creation datetime of the bank account associated with the PIX key. ex: "2020-11-05T14:55:08.812665+00:00" - `:owned` [string, default nil]: datetime since when the current owner hold this PIX key. ex : "2020-11-05T14:55:08.812665+00:00" - `:created` [string, default nil]: creation datetime for the PIX key. ex: "2020-11-05T14:55:08.812665+00:00"
(get id)
(get id user)
Receive a single DictKey by passing its id
id
[string]: DictKey object unique id and PIX key itself. ex: "tony@starkbank.com", "722.461.430-04", "20.018.183/0001-80", "+5511988887777", "b6295ee1-f054-47d1-9e90-ee57b74f60d9":user
[Project or Organization]: Project or Organization map returned from starkbank.user/project or starkbank.user/organization. Only necessary if starkbank.settings/user has not been set.Receive a single DictKey by passing its id ## Parameters (required): - `id` [string]: DictKey object unique id and PIX key itself. ex: "tony@starkbank.com", "722.461.430-04", "20.018.183/0001-80", "+5511988887777", "b6295ee1-f054-47d1-9e90-ee57b74f60d9" ## Options: - `:user` [Project or Organization]: Project or Organization map returned from starkbank.user/project or starkbank.user/organization. Only necessary if starkbank.settings/user has not been set. ## Return: - DictKey object with updated attributes
(query)
(query params)
(query params user)
Receive a stream of DictKey maps associated with your Stark Bank Workspace
:limit
[integer, default nil]: maximum number of maps to be retrieved. Unlimited if nil. ex: 35:after
[string, default nil]: date filter for maps created only after specified date. ex: "2020-3-10":before
[string, default nil]: date filter for maps created only before specified date. ex: "2020-3-10":type
[string, default None]: DictKey type. ex: "cpf", "cnpj", "phone", "email" or "evp":status
[string, default nil]: filter for status of retrieved maps. ex: "created", "paid", "canceled" or "overdue":ids
[list of strings, default nil]: list of ids to filter retrieved maps. ex: ["5656565656565656", "4545454545454545"]:user
[Project or Organization]: Project or Organization map returned from starkbank.user/project or starkbank.user/organization. Only necessary if starkbank.settings/user has not been set.Receive a stream of DictKey maps associated with your Stark Bank Workspace ## Options: - `:limit` [integer, default nil]: maximum number of maps to be retrieved. Unlimited if nil. ex: 35 - `:after` [string, default nil]: date filter for maps created only after specified date. ex: "2020-3-10" - `:before` [string, default nil]: date filter for maps created only before specified date. ex: "2020-3-10" - `:type` [string, default None]: DictKey type. ex: "cpf", "cnpj", "phone", "email" or "evp" - `:status` [string, default nil]: filter for status of retrieved maps. ex: "created", "paid", "canceled" or "overdue" - `:ids` [list of strings, default nil]: list of ids to filter retrieved maps. ex: ["5656565656565656", "4545454545454545"] - `:user` [Project or Organization]: Project or Organization map returned from starkbank.user/project or starkbank.user/organization. Only necessary if starkbank.settings/user has not been set. ## Return: - stream of DictKey maps with updated attributes
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close