Lookup one exact member of an immutable dataset version
GET
/v1/datasets/versions/member
const url = 'https://example.com/v1/datasets/versions/member?version_id=2489E9AD-2EE2-8E00-8EC9-32D5F69181C0&source_dataset_id=2489E9AD-2EE2-8E00-8EC9-32D5F69181C0&source_episode_index=1';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/v1/datasets/versions/member?version_id=2489E9AD-2EE2-8E00-8EC9-32D5F69181C0&source_dataset_id=2489E9AD-2EE2-8E00-8EC9-32D5F69181C0&source_episode_index=1'Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” version_id
required
Dataset version id
string format: uuid
Dataset version id
source_dataset_id
required
Frozen source dataset id
string format: uuid
Frozen source dataset id
source_episode_index
required
integer
account_id
Act on this account (active)
string | null format: uuid
Act on this account (active)
Header Parameters
Section titled “Header Parameters ” x-api-key
string | null
Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
exampleValidation Error
Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationErrorobject
loc
required
Location
Array<string | integer>
msg
required
Message
string
type
required
Error Type
string
input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}