Sha256: f0453d253fc47a18545a4a8a60d8b509f6ec2232d2cb7fe159e3d8ab46ca8572
Contents?: true
Size: 598 Bytes
Versions: 2
Compression:
Stored size: 598 Bytes
Contents
## Adding information to carnet's history It is possible to add information to the history of a carnet. These informations will be listed when [detailing a carnet](https://github.com/gerencianet/gn-api-sdk-ruby/tree/master/docs/carnet-detailing.md). The process to add information to history is shown below: ```ruby params = { id: 1000 } body = { description: "Info that will be added to carnet history" } gerencianet = Gerencianet.new(options) gerencianet.create_carnet_history(params: params, body: body) ``` If everything goes well, the return will be: ```ruby { "code": 200 } ```
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gerencianet-0.0.7 | docs/carnet-create-history.md |
gerencianet-0.0.6 | docs/carnet-create-history.md |