GraphQL / Object Interface Related Structures.| Parameter Name | Required | Type | Explanation |
|---|---|---|---|
| tangibleId | no | string | Unique identifier for the tangible. |
| tangibleType | no | string | Type of the tangible. |
| tangibleName | no | string | Name of the tangible. |
| pageNum | no | int | Current page number, default is 1. |
| pageSize | no | int | Number of items per page default is 20. |
| Parameter Name | Required | Type | Explanation |
|---|---|---|---|
| errorCode | yes | string | Error code |
| errorInfo | yes | string | Error details |
| total | no | int | Total number of results |
| size | no | int | Number of items on the current page |
| result | no | TangibleInfo | List of query results |
Authorization: Bearer ********************curl --location 'https://mma.tvunetworks.com/api/objectd/v1/query' \
--header 'SID: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"query": "query getTangible { getTangible(input: { tangibleId: \"testtangibleid1\" }) { errorCode errorInfo result { tangibleId tangibleType tangibleName extraInfo } } }"
}'{
"data": {
"getTangible": {
"errorCode": "0x0",
"errorInfo": "Succ",
"result": [
{
"tangibleId": "testtangibleid1",
"tangibleType": "ext",
"tangibleName": "testmodify",
"extraInfo": {
"testname": "bbb"
}
}
]
}
}
}