Skip to content

place.stream.multistream.putTarget

Lexicon Version: 1

Type: procedure

Update an existing target for rebroadcasting a Streamplace stream.

Parameters: (None defined)

Input:

  • Encoding: application/json
  • Schema:

Schema Type: object

NameTypeReq’dDescriptionConstraints
multistreamTargetplace.stream.multistream.target
rkeystringThe Record Key.Format: record-key
Max Length: 512

Output:

  • Encoding: application/json
  • Schema:

Schema Type: place.stream.multistream.defs#targetView

Possible Errors:

  • InvalidTargetUrl: The provided target URL is invalid or unreachable.

{
"lexicon": 1,
"id": "place.stream.multistream.putTarget",
"defs": {
"main": {
"type": "procedure",
"description": "Update an existing target for rebroadcasting a Streamplace stream.",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["multistreamTarget"],
"properties": {
"multistreamTarget": {
"type": "ref",
"ref": "place.stream.multistream.target"
},
"rkey": {
"type": "string",
"format": "record-key",
"description": "The Record Key.",
"maxLength": 512
}
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "ref",
"ref": "place.stream.multistream.defs#targetView"
}
},
"errors": [
{
"name": "InvalidTargetUrl",
"description": "The provided target URL is invalid or unreachable."
}
]
}
}
}