Create a record for a chart in a game hosting leaderboards via Tsunagite. If the chart already exists, update its data.
Input
Encoding
text/jsonchart
refdev.tsunagite.chart
Required
No description available.
id
stringrecord-key
Required
The ID of this chart. Should only include [a-zA-Z0-9-].
Output
Encoding
text/jsonuri
stringat-uri
Optional
The URI pointing to the chart's newly-created record.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"id",
"chart"
],
"properties": {
"id": {
"type": "string",
"format": "record-key",
"description": "The ID of this chart. Should only include [a-zA-Z0-9-]."
},
"chart": {
"ref": "dev.tsunagite.chart",
"type": "ref"
}
}
},
"encoding": "text/json"
},
"output": {
"schema": {
"type": "object",
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "The URI pointing to the chart's newly-created record."
}
}
},
"encoding": "text/json"
},
"description": "Create a record for a chart in a game hosting leaderboards via Tsunagite. If the chart already exists, update its data."
}