Skip to content

grants

Grants

Bases: ListableApiResource, FindableApiResource, CreatableApiResource, UpdatableApiResource, DestroyableApiResource

Source code in nylas/resources/grants.py
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
class Grants(
    ListableApiResource,
    FindableApiResource,
    CreatableApiResource,
    UpdatableApiResource,
    DestroyableApiResource,
):
    def list(self, query_params: ListGrantsQueryParams = None) -> ListResponse[Grant]:
        """
        Return all Grants.

        Args:
            query_params: The query parameters to include in the request.

        Returns:
            A list of Grants.
        """

        return super(Grants, self).list(
            path=f"/v3/grants", response_type=Grant, query_params=query_params
        )

    def find(self, grant_id: str) -> Response[Grant]:
        """
        Return a Grant.

        Args:
            grant_id: The ID of the Grant to retrieve.

        Returns:
            The Grant.
        """

        return super(Grants, self).find(
            path=f"/v3/grants/{grant_id}", response_type=Grant
        )

    def create(self, request_body: CreateGrantRequest) -> Response[Grant]:
        """
        Create a Grant via Custom Authentication.

        Args:
            request_body: The values to create the Grant with.

        Returns:
            The created Grant.
        """

        return super(Grants, self).create(
            path=f"/v3/connect/custom", response_type=Grant, request_body=request_body
        )

    def update(
        self, grant_id: str, request_body: UpdateGrantRequest
    ) -> Response[Grant]:
        """
        Update a Grant.

        Args:
            grant_id: The ID of the Grant to update.
            request_body: The values to update the Grant with.

        Returns:
            The updated Grant.
        """

        return super(Grants, self).update(
            path=f"/v3/grants/{grant_id}",
            response_type=Grant,
            request_body=request_body,
        )

    def destroy(self, grant_id: str) -> DeleteResponse:
        """
        Delete a Grant.

        Args:
            grant_id: The ID of the Grant to delete.

        Returns:
            The deletion response.
        """

        return super(Grants, self).destroy(path=f"/v3/grants/{grant_id}")

create(request_body)

Create a Grant via Custom Authentication.

Parameters:

Name Type Description Default
request_body CreateGrantRequest

The values to create the Grant with.

required

Returns:

Type Description
Response[Grant]

The created Grant.

Source code in nylas/resources/grants.py
54
55
56
57
58
59
60
61
62
63
64
65
66
67
def create(self, request_body: CreateGrantRequest) -> Response[Grant]:
    """
    Create a Grant via Custom Authentication.

    Args:
        request_body: The values to create the Grant with.

    Returns:
        The created Grant.
    """

    return super(Grants, self).create(
        path=f"/v3/connect/custom", response_type=Grant, request_body=request_body
    )

destroy(grant_id)

Delete a Grant.

Parameters:

Name Type Description Default
grant_id str

The ID of the Grant to delete.

required

Returns:

Type Description
DeleteResponse

The deletion response.

Source code in nylas/resources/grants.py
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
def destroy(self, grant_id: str) -> DeleteResponse:
    """
    Delete a Grant.

    Args:
        grant_id: The ID of the Grant to delete.

    Returns:
        The deletion response.
    """

    return super(Grants, self).destroy(path=f"/v3/grants/{grant_id}")

find(grant_id)

Return a Grant.

Parameters:

Name Type Description Default
grant_id str

The ID of the Grant to retrieve.

required

Returns:

Type Description
Response[Grant]

The Grant.

Source code in nylas/resources/grants.py
39
40
41
42
43
44
45
46
47
48
49
50
51
52
def find(self, grant_id: str) -> Response[Grant]:
    """
    Return a Grant.

    Args:
        grant_id: The ID of the Grant to retrieve.

    Returns:
        The Grant.
    """

    return super(Grants, self).find(
        path=f"/v3/grants/{grant_id}", response_type=Grant
    )

list(query_params=None)

Return all Grants.

Parameters:

Name Type Description Default
query_params ListGrantsQueryParams

The query parameters to include in the request.

None

Returns:

Type Description
ListResponse[Grant]

A list of Grants.

Source code in nylas/resources/grants.py
24
25
26
27
28
29
30
31
32
33
34
35
36
37
def list(self, query_params: ListGrantsQueryParams = None) -> ListResponse[Grant]:
    """
    Return all Grants.

    Args:
        query_params: The query parameters to include in the request.

    Returns:
        A list of Grants.
    """

    return super(Grants, self).list(
        path=f"/v3/grants", response_type=Grant, query_params=query_params
    )

update(grant_id, request_body)

Update a Grant.

Parameters:

Name Type Description Default
grant_id str

The ID of the Grant to update.

required
request_body UpdateGrantRequest

The values to update the Grant with.

required

Returns:

Type Description
Response[Grant]

The updated Grant.

Source code in nylas/resources/grants.py
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
def update(
    self, grant_id: str, request_body: UpdateGrantRequest
) -> Response[Grant]:
    """
    Update a Grant.

    Args:
        grant_id: The ID of the Grant to update.
        request_body: The values to update the Grant with.

    Returns:
        The updated Grant.
    """

    return super(Grants, self).update(
        path=f"/v3/grants/{grant_id}",
        response_type=Grant,
        request_body=request_body,
    )