For AI agents and LLMs: a machine-readable index is available at llms.txt. A plain-Markdown version of any documentation page is available by appending .md to its URL.
Skip to main content
MediaFetch media list for an organization (server 4)
TestMu AI
StatusCommunityBlog
Media

Fetch media list for an organization (server 4)

Retrieve a list of uploaded media files (images, videos, etc.) associated with an organization.

GET
/mfs/v1.0/media/list
Fetch media list for an organization (server 4)
curl --request GET \
--url "https://manual-api.lambdatest.com/mfs/v1.0/media/list" \
--header "Authorization: Basic <encoded-value>"
{
"media_url": "Media_URL",
"media_id": "MEDIA12234567890",
"name": "sample.png",
"custom-id": "Sample_Image",
"type": "image"
}

Authorizations

Authorizationstringheaderrequired

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

Query Parameters

custom_idstring

The custom ID to retrieve Media.

typestring

Media type (image/video/doc/cert)

Response

application/json

Successful response containing media list

media_urlstring
Example: "Media_URL"
media_idstring
Example: "MEDIA12234567890"
namestring
Example: "sample.png"
custom-idstring
Example: "Sample_Image"
typestring
Example: "image"
Fetch media list for an organization (server 4)
curl --request GET \
--url "https://manual-api.lambdatest.com/mfs/v1.0/media/list" \
--header "Authorization: Basic <encoded-value>"
{
"media_url": "Media_URL",
"media_id": "MEDIA12234567890",
"name": "sample.png",
"custom-id": "Sample_Image",
"type": "image"
}