When you initialize a BoletoHolmes, the entity will not be automatically created in the Stark Bank API. The 'create' function sends the maps to the Stark Bank API and returns the list of created maps.
:boleto-id
[string]: investigated boleto entity ID. ex: "5656565656565656":tags
[list of strings]: list of strings for tagging:id
[string, default nil]: unique id returned when the holmes is created. ex: "5656565656565656":status
[string, default nil]: current holmes status. ex: "solving" or "solved":result
[string, default nil]: result of boleto status investigation. ex: "paid" or "cancelled":updated
[string, default nil]: latest update datetime for the holmes. ex: "2020-03-26T19:32:35.418698+00:00":created
[string, default nil]: creation datetime for the holmes. ex: "2020-03-26T19:32:35.418698+00:00"When you initialize a BoletoHolmes, the entity will not be automatically created in the Stark Bank API. The 'create' function sends the maps to the Stark Bank API and returns the list of created maps. ## Parameters (required): - `:boleto-id` [string]: investigated boleto entity ID. ex: "5656565656565656" ## Parameters (optional): - `:tags` [list of strings]: list of strings for tagging ## Attributes (return-only): - `:id` [string, default nil]: unique id returned when the holmes is created. ex: "5656565656565656" - `:status` [string, default nil]: current holmes status. ex: "solving" or "solved" - `:result` [string, default nil]: result of boleto status investigation. ex: "paid" or "cancelled" - `:updated` [string, default nil]: latest update datetime for the holmes. ex: "2020-03-26T19:32:35.418698+00:00" - `:created` [string, default nil]: creation datetime for the holmes. ex: "2020-03-26T19:32:35.418698+00:00"
(create holmes)
(create holmes user)
Send a list of BoletoHolmes maps for creation in the Stark Bank API
holmes
[list of BoletoHolmes maps]: list of BoletoHolmes maps to be created in the API:user
[Project]: Project map returned from starkbank.user/project. Only necessary if starkbank.settings/user has not been set.Send a list of BoletoHolmes maps for creation in the Stark Bank API ## Parameters (required): - `holmes` [list of BoletoHolmes maps]: list of BoletoHolmes maps to be created in the API ## Options: - `:user` [Project]: Project map returned from starkbank.user/project. Only necessary if starkbank.settings/user has not been set. ## Return: - list of BoletoHolmes maps with updated attributes
(get id)
(get id user)
Receive a single BoletoHolmes map previously created by the Stark Bank API by passing its id
id
[string]: map unique id. ex: "5656565656565656":user
[Project]: Project map returned from starkbank.user/project. Only necessary if starkbank.settings/user has not been set.Receive a single BoletoHolmes map previously created by the Stark Bank API by passing its id ## Parameters (required): - `id` [string]: map unique id. ex: "5656565656565656" ## Options: - `:user` [Project]: Project map returned from starkbank.user/project. Only necessary if starkbank.settings/user has not been set. ## Return: - BoletoHolmes map with updated attributes
(query)
(query params)
(query params user)
Receive a stream of BoletoHolmes maps previously created in the Stark Bank API
: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":tags
[list of strings, default nil]: tags to filter retrieved maps. ex: ["tony", "stark"]:ids
[list of strings, default null]: list of ids to filter retrieved objects. ex: ["5656565656565656", "4545454545454545"]:status
[string, default nil]: filter for status of retrieved maps. ex: "success":boleto-id
[string, default nil]: filter for holmes that investigate a specific boleto by its ID. ex: "5656565656565656":user
[Project]: Project map returned from starkbank.user/project. Only necessary if starkbank.settings/user has not been set.Receive a stream of BoletoHolmes maps previously created in the Stark Bank API ## 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" - `:tags` [list of strings, default nil]: tags to filter retrieved maps. ex: ["tony", "stark"] - `:ids` [list of strings, default null]: list of ids to filter retrieved objects. ex: ["5656565656565656", "4545454545454545"] - `:status` [string, default nil]: filter for status of retrieved maps. ex: "success" - `:boleto-id` [string, default nil]: filter for holmes that investigate a specific boleto by its ID. ex: "5656565656565656" - `:user` [Project]: Project map returned from starkbank.user/project. Only necessary if starkbank.settings/user has not been set. ## Return: - stream of BoletoHolmes maps with updated attributes
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close