starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,48 @@
---
id: v2024-create-personal-access-token-response
title: CreatePersonalAccessTokenResponse
pagination_label: CreatePersonalAccessTokenResponse
sidebar_label: CreatePersonalAccessTokenResponse
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'CreatePersonalAccessTokenResponse', 'V2024CreatePersonalAccessTokenResponse']
slug: /tools/sdk/python/v2024/models/create-personal-access-token-response
tags: ['SDK', 'Software Development Kit', 'CreatePersonalAccessTokenResponse', 'V2024CreatePersonalAccessTokenResponse']
---
# CreatePersonalAccessTokenResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The ID of the personal access token (to be used as the username for Basic Auth). | [required]
**secret** | **str** | The secret of the personal access token (to be used as the password for Basic Auth). | [required]
**scope** | **[]str** | Scopes of the personal access token. | [required]
**name** | **str** | The name of the personal access token. Cannot be the same as other personal access tokens owned by a user. | [required]
**owner** | [**PatOwner**](pat-owner) | | [required]
**created** | **datetime** | The date and time, down to the millisecond, when this personal access token was created. | [required]
**access_token_validity_seconds** | **int** | Number of seconds an access token is valid when generated using this Personal Access Token. If no value is specified, the token will be created with the default value of 43200. | [required]
}
## Example
```python
from sailpoint.v2024.models.create_personal_access_token_response import CreatePersonalAccessTokenResponse
create_personal_access_token_response = CreatePersonalAccessTokenResponse(
id='86f1dc6fe8f54414950454cbb11278fa',
secret='1d1bef2b9f426383447f64f69349fc7cac176042578d205c256ba3f37c59adb9',
scope=[demo:personal-access-token-scope:first, demo:personal-access-token-scope:second],
name='NodeJS Integration',
owner=sailpoint.v2024.models.pat_owner.PatOwner(
type = 'IDENTITY',
id = '2c9180a46faadee4016fb4e018c20639',
name = 'Support', ),
created='2017-07-11T18:45:37.098Z',
access_token_validity_seconds=36900
)
```
[[Back to top]](#)