Path parameters
Add the following path parameters as part of the endpoint:
Parameter | Type | Description |
---|
name required
| string
| Enter the name of the relay that contains the output configuration you want to update. |
Request body
The request JSON body must include an object with the following key-value pairs:
Parameter | Type | Description |
---|
memoryBufferSize required
| number
| Memory buffer size in bytes. The minimum value is 128 MB, and the maximum value is 1024 TB. The default value is 128 MB. |
diskBufferSize required
| number
| Disk buffer size in bytes. The minimum value is 128 MB, and the maximum value is 1024 TB. The default value is 128 MB. |
socketTimeout required
| integer
| Socket timeout in seconds. The minimum and default value is 0 . |
socketBufferSize required
| integer
| Socket buffer size in bytes. The minimum value is 128 kB, and the maximum value is 4096 kB. The default is 200 kB. |
socketKeepAlive required
| boolean
| Set this option to true if you want to receive a signal to check that the output socket is operating properly. |
compression required
| string
| Choose the required compression type between gzip and none . The default value is none . |
Find below a request example:
https://api-us.devo.com/maduro/relays/myRelay/output
{
"memoryBufferSize": 134217728,
"diskBufferSize": 134217728,
"socketTimeout": 0,
"socketBufferSize": 204800,
"socketKeepAlive": true,
"compression": "none"
}