메인 콘텐츠로 건너뛰기
POST
/
obj
/
create
객체 생성
curl --request POST \
  --url https://api.example.com/obj/create \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "obj": {
    "project_id": "<string>",
    "object_id": "<string>",
    "val": "<unknown>",
    "builtin_object_class": "<string>",
    "set_base_object_class": "<string>",
    "wb_user_id": "<string>"
  }
}
'
{
  "digest": "<string>",
  "object_id": "<string>"
}

인증

Authorization
string
header
필수

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

본문

application/json
obj
ObjSchemaForInsert · object
필수

응답

성공 응답

digest
string
필수
object_id
string | null