HEX
Server: Apache
System: Linux vps-cdc32557.vps.ovh.ca 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
User: hanode (1017)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //usr/share/doc/awscli/examples/mediaconvert/get-job.rst
**To get details for a particular job**

The following example requests the information for the job with ID ``1234567890987-1ab2c3``, which in this example ended in an error. ::

    aws mediaconvert get-job \
        --endpoint-url https://abcd1234.mediaconvert.region-name-1.amazonaws.com \
        --region region-name-1 \
        --id 1234567890987-1ab2c3

To get your account-specific endpoint, use ``describe-endpoints``, or send the command without the endpoint. The service returns an error and your endpoint.

If your request is successful, the service returns a JSON file with job information, including job settings, any returned errors, and other job data, as follows::

    {
        "Job": {
            "Status": "ERROR",
            "Queue": "arn:aws:mediaconvert:region-name-1:012345678998:queues/Queue1",
            "Settings": {
                ...<truncated for brevity>...
            },
            "ErrorMessage": "Unable to open input file [s3://my-input-bucket/file-name.mp4]: [Failed probe/open: [Failed to read data: AssumeRole failed]]",
            "ErrorCode": 1434,
            "Role": "arn:aws:iam::012345678998:role/MediaConvertServiceRole",
            "Arn": "arn:aws:mediaconvert:us-west-1:012345678998:jobs/1234567890987-1ab2c3",
            "UserMetadata": {},
            "Timing": {
                "FinishTime": 1517442131,
                "SubmitTime": 1517442103,
                "StartTime": 1517442104
            },
            "Id": "1234567890987-1ab2c3",
            "CreatedAt": 1517442103
        }
    }

For more information, see `Working with AWS Elemental MediaConvert Jobs <https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-jobs.html>`_ in the *AWS Elemental MediaConvert User Guide*.