> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paytsoftware.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create administration

> Let users create additional administrations after sign up with their existing access token.

Once the sign up has been completed a user might want to create more administrations within Payt. This process is the light version of the sign up process and can be performed by calling the [administration create endpoint](/api-reference/administrations/creates-an-administration) using the `access_token` from the sign up process as authentication. The new administration is added to the same Payt account. The url this administration has in the Payt interface is added to the response, so you can choose to present it to the user as the next step to take in the integration process.

```mermaid theme={null}
sequenceDiagram
    participant U as User
    participant P as Partner app
    participant Payt as Payt

    U->>P: Provide credentials
    P->>P: Login user
    U->>P: Initialise the creation of a Payt administration
    P->>Payt: Send a create_administration request
    Payt->>Payt: Create administration
    Payt->>Payt: Setup auto-connect if api credentials are provided
    Payt->>Payt: Extend access_token permissions to include the new administration
    Payt->>P: Return administration
    P->>U: Receive feedback
    P->>P: Associate the current administration with the created Payt administration
    Payt->>Payt: Start the first import if api credentials were provided
```
