Update Share Peer URL
Update Share Peer URL's expire date
Request
POST /api/sharePeer/update
Body Parameter
{
"ShareID": "448a6f79-f6fc-4ce9-802a-1a3142ae7253",
"ExpireDate": "2024-10-09 23:50:52"
}
Parameter | Type | |
---|---|---|
| string | The ShareID you want to update |
| string | Expire date for the URL, format is |
Response
200 - OK
If create successfully, it will return an object in the data, it contains information about the updated share URL
{
"data": [
{
"Configuration": "wg88",
"ExpireDate": "2024-10-09 23:50:52",
"Peer": "72y7R7deXRLZoIb+BYNFWe5RuCmXnWxTSMHfv4Kjay8=",
"ShareID": "448a6f79-f6fc-4ce9-802a-1a3142ae7253"
}
],
"message": null,
"status": true
}
If ShareID
is blank
{
"data": null,
"message": "Please specify ShareID",
"status": false
}
If ShareID
does not exist
{
"data": null,
"message": "ShareID does not exist",
"status": false
}
Last modified: 26 September 2024