Update Conference
API to modify meeting time and content
Update Conference
PATCH
https://uprism.io:30443/v1/users/{userId}/conference/{roomId}
API to modify meeting time and content
Path Parameters
Name
Type
Description
roomId
string
Conference room id
userId
string
Sub User Id
Headers
Name
Type
Description
Authorization
string
"Bearer " + {AccessToken}
Request Body
Name
Type
Description
start_date
string
yyyyMMddHHmmss format date (length : 14) Conference start time default: current time
end_date
string
yyyyMMddHHmmss format date (length : 14) Conference end time default: current time + 1hour
agenda
string
conference agenda
title
string
conference title
{
"code": 200,
"message": "success",
"response": {
"room_id": "2F673FC6-C1FC-4073-EC76-AF7CB2AC582B",
"title": "회의 제목",
"creator_id": "uprism.good1768",
"is_public": 1,
"start_date": "20190724063031",
"end_date": "20190716150000",
"agenda": "회의 내용..",
"join_url": "https://uprism.io/join/123456789"
}
}
Last updated
Was this helpful?