client.jobs.list_dependencies

A method of the Jobs endpoint.

list_dependencies(id: int, *, user_id: int = None) ListResponse

List dependent objects for this object

API URL: GET /jobs/{id}/dependencies

import civis
client = civis.APIClient()
response = client.jobs.list_dependencies(...)
Parameters:
idint

The ID of the resource that is shared.

user_idint, optional

ID of target user

Returns:
civis.ListResponse
  • object_typestr

    Dependent object type

  • fco_typestr

    Human readable dependent object type

  • idint

    Dependent object ID

  • namestr

    Dependent object name, or nil if the requesting user cannot read this object

  • permission_levelstr

    Permission level of target user (not user’s groups) for dependent object. Null if no target user or not shareable (e.g. a database table).

  • descriptionstr

    Additional information about the dependency, if relevant

  • shareablebool

    Whether or not the requesting user can share this object.