Get Current Organization ID¶
Get the organization ID that the current Edge belongs to.
Request Format¶
GET http://{apigw-address}/edge-service/v1/orgid
Response Parameters¶
Name |
Data type |
Description |
---|---|---|
status |
Int |
Status code |
msg |
String |
Response message |
submsg |
String |
Response sub-message |
data |
Object |
Response data, the structure of which is in the table below |
Data Object¶
Name |
Data type |
Description |
---|---|---|
orgId |
String |
Organization ID that the current Edge belongs to |
Sample¶
Request Sample¶
POST http://{apigw-address}/iam/v1/api/open/organization/get
Return Sample¶
{
"status":0,
"msg":"success",
"submsg":"",
"data":{
"orgId":"o15427722038191"
}
}