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

# Mapping Your Resources to Seam Resources

> Learn how Seam makes it easy to tag Seam resources with your own internal IDs.

Seam enables you to set a custom unique key on each instance of resources, like Spaces, User Identities, and Access Grants. Use these keys to map your own data—such as rooms, listings, or reservations—to the corresponding Seam resources. In addition, you can link your own customers with the Connect Webviews and resulting Connected Accounts that they use to connect their devices and systems to Seam.

Resource keys make it easier to cross-reference and sync information between your systems and Seam.

Each resource includes a `<resource>_key` property in which you can store your own identifier. For example:

* `space_key` for [Spaces](/api/spaces/object)
* `user_identity_key` for [User Identities](/api/user_identities/object)
* `access_grant_key` for [Access Grants](/api/access_grants/object)
* `customer_key` for [Connect Webviews](/api/connect_webviews/object) and [Connected Accounts](/api/connected_accounts/object)

Resource keys of each type generally need to be unique within your workspace. For example, if you save a Space with the `space_key` `room-101-id`, you cannot create another Space with this key.

The one exception is with `customer_key`, where you can create multiple Connect Webviews using the same `customer_key`.

The guide describes how to add resources keys to Seam resources of various relevant types and also how to retrieve a Seam resource using a resource key.

***

## **Associating Connected Accounts with Your Customers**

[Connected Accounts](/core-concepts/connected-accounts/index) represent connections that your customers set up with their own devices or access systems through your app. You embed a [Connect Webview](/core-concepts/connect-webviews/index) in your app, and your customers establish these connections by authenticating their device or system accounts through the pre-built Connect Webview flow. Each successful connection creates a Connected Account in your Seam workspace. Each Connected Account is linked to a specific customer.

When you create an instance of a Connect Webview, you can tag it with a customer key. When your customer completes the authentication flow through this Connect Webview, Seam automatically copies the `customer_key` to the resulting Connected Account. You can then use the `customer_key` to retrieve the Connected Account consistently.

### Create a Connect Webview for a Specific Customer

**Code:**

<CodeGroup>
  ```javascript JavaScript theme={null}
  await seam.connectWebviews.create({
    accepted_providers: '',
    customer_key: 'customer-id', // Your unique identifier for the customer
  })
  ```

  ```bash cURL theme={null}
  # Include your unique identifier for the customer.
  curl -X 'POST' \
    'https://connect.getseam.com/connect_webviews/create' \
    -H 'accept: application/json' \
    -H "Authorization: Bearer ${SEAM_API_KEY}" \
    -H 'Content-Type: application/json' \
    -d "{
    \"accepted_providers\": \"${your_list_of_providers}\",
    \"customer_key\": \"${customer-id}\"
  }"
  ```

  ```python Python theme={null}
  seam.connect_webviews.create(
    accepted_providers = your_list_of_providers,
    customer_key = "customer-id" # Your unique identifier for the customer
  )
  ```

  ```ruby Ruby theme={null}
  client.connect_webviews.create(
    accepted_providers: "",
    customer_key: "customer-id" # Your unique identifier for the customer
  )
  ```

  ```php PHP theme={null}
  $created_connect_webview = $seam->connect_webviews->create(
    accepted_providers: "",
    customer_key: "customer-id" // Your unique identifier for the customer
  );
  ```

  ```csharp C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

**Output:**

<CodeGroup>
  ```json JavaScript theme={null}
  {
    connect_webview_id: '12345678-1234-1234-1234-123456789012',
    customer_key: 'customer-id',
    ...
  }
  ```

  ```json cURL theme={null}
  {
    "connect_webview": {
      "connect_webview_id": "12345678-1234-1234-1234-123456789012",
      "customer_key": "customer-id",
      ...
    },
    "ok": true
  }
  ```

  ```json Python theme={null}
  ConnectWebview(
    connect_webview_id='12345678-1234-1234-1234-123456789012',
    customer_key='customer-id',
    ...
  )
  ```

  ```json Ruby theme={null}
  <Seam::ConnectWebview:0x00438
      connect_webview_id="12345678-1234-1234-1234-123456789012"
      customer_key="customer-id"
      ...
  >
  ```

  ```json PHP theme={null}
  {
    "connect_webview_id": "12345678-1234-1234-1234-123456789012",
    "customer_key": "customer-id",
    ...
  }
  ```

  ```json C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

### Retrieve All Connected Accounts for a Specific Customer

Once your customer has completed the Connect Webview authentication flow, and Seam has copied the `customer_key` to the resulting Connected Account, you can list all Connected Accounts associated with a specific `customer_key` tag. Then, you can also list all devices or systems associated with the customer, using the retrieved Connected Account ID.

**Code:**

<CodeGroup>
  ```javascript JavaScript theme={null}
  const connected_accounts = await seam.connected_accounts.list({
    customer_key: 'customer-id',
  })

  let customerSystems = []

  for (const account of connected_accounts) {
    const systems = await seam.acs.systems.list({
      connected_account_id: account.connected_account_id,
    })
    customerSystems.push(...systems)
  }

  console.log(customerSystems)
  ```

  ```bash cURL theme={null}
  connected_accounts=$(curl -X GET \
    'https://connect.getseam.com/connected_accounts/list' \
    -H 'accept: application/json' \
    -H "Authorization: Bearer ${SEAM_API_KEY}" \
    -H 'Content-Type: application/json' \
    -d "{
      \"customer_key\": \"${customer-id}\"
    }")

  account_ids=$(echo $connected_accounts | jq -r '.connected_accounts[].connected_account_id')

  customer_systems="[]"
  for account_id in $account_ids; do
    systems=$(curl -X GET \
    'https://connect.getseam.com/acs/systems/list' \
    -H 'accept: application/json' \
    -H "Authorization: Bearer ${SEAM_API_KEY}" \
    -H 'Content-Type: application/json' \
    -d "{
      \"connected_account_id\": \"${account_id}\"
    }")
    customer_systems=$(jq -s '.[0] + .[1]' <(echo "$customer_systems") <(echo $systems | jq '.systems'))
  done

  echo $customer_systems
  ```

  ```python Python theme={null}
  connected_accounts = seam.connected_accounts.list(
    customer_key="customer-id"
  )

  customer_systems = []

  for account in connected_accounts:
    systems = seam.acs.systems.list(
      connected_account_id=account.connected_account_id
    )

    customer_systems.extend(systems)

  pprint(customer_systems)
  ```

  ```ruby Ruby theme={null}
  connected_accounts = seam.connected_accounts.list(
    customer_key: "customer-id"
  )

  customer_systems = []

  connected_accounts.each do |account|
    systems = seam.acs.systems.list(
      connected_account_id: account.connected_account_id
    )
    customer_systems.concat(systems)
  end

  puts customer_systems.inspect
  ```

  ```php PHP theme={null}
  $connected_accounts = $seam->connected_accounts->list(
    'customer_key' => 'customer-id'
  );

  $customer_systems = [];

  foreach ($connected_accounts as $account) {
    $systems = $seam->acs->systems->list(
      "connected_account_id" : $account->connected_account_id
    );
    $customer_systems = array_merge($customer_systems, $systems);
  }

  echo json_encode($customer_systems);
  ```

  ```csharp C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

**Output:**

<CodeGroup>
  ```json JavaScript theme={null}
  [
    {
      connected_account_id: '11111111-1111-1111-1111-111111111111',
      acs_system_id: '22222222-2222-2222-2222-222222222222',
      name: 'Salto KS Site',
      ...
    },
    {
      connected_account_id: '11111111-1111-1111-1111-111111111111',
      acs_system_id: '33333333-3333-3333-3333-333333333333',
      name: 'Salto Space Site',
      ...
    },
    ...
  ]
  ```

  ```json cURL theme={null}
  {
    "acs_systems": [
      {
        "connected_account_id": "11111111-1111-1111-1111-111111111111",
        "acs_system_id": "22222222-2222-2222-2222-222222222222",
        "name": "Salto KS Site",
        ...
      },
      {
        "connected_account_id": "11111111-1111-1111-1111-111111111111",
        "acs_system_id": "33333333-3333-3333-3333-333333333333",
        "name": "Salto Space Site",
        ...
      },
      ...
    ],
    "ok": true
  }
  ```

  ```json Python theme={null}
  [
    AcsSystem(
      connected_account_id="11111111-1111-1111-1111-111111111111",
      acs_system_id="22222222-2222-2222-2222-222222222222",
      name="Salto KS Site",
      ...
    ),
    AcsSystem(
      connected_account_id="11111111-1111-1111-1111-111111111111",
      acs_system_id="33333333-3333-3333-3333-333333333333",
      name="Salto Space Site",
      ...
    ),
    ...
  ]
  ```

  ```json Ruby theme={null}
  [
    <Seam::AcsSystem:0x00438
      connected_account_id="11111111-1111-1111-1111-111111111111"
      acs_system_id="22222222-2222-2222-2222-222222222222"
      name="Salto KS Site"
      ...
    >,
    <Seam::AcsSystem:0x00438
      connected_account_id="11111111-1111-1111-1111-111111111111"
      acs_system_id="33333333-3333-3333-3333-333333333333"
      name="Salto Space Site"
      ...
    >,
    ...
  ]
  ```

  ```json PHP theme={null}
  [
    {
      "connected_account_id": "11111111-1111-1111-1111-111111111111",
      "acs_system_id": "22222222-2222-2222-2222-222222222222",
      "name": "Salto KS Site",
      ...
    },
    {
      "connected_account_id": "11111111-1111-1111-1111-111111111111",
      "acs_system_id": "33333333-3333-3333-3333-333333333333",
      "name": "Salto Space Site",
      ...
    },
    ...
  ]
  ```

  ```json C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

Any accounts that your customer sets up also carry this `customer_key`, so you can associate their connected systems with their properties, Spaces, and reservations in your own database.

***

## **Associating a Seam Space with Your Own Resource**

When you create a Seam space resource, you can include your own ID as the value for the `space_key`. Some examples of resources that you could tie to a Space include hotel rooms, apartments, or common area amenities.

**Code:**

<CodeGroup>
  ```javascript JavaScript theme={null}
  await seam.spaces.create({
    name: 'Valley Grove - Room 104',
    acs_entrance_ids: [unit104Entrance.acs_entrance_id],
    space_key: 'room-104-id', // Your room ID
  })
  ```

  ```bash cURL theme={null}
  # Include your room ID.
  curl -X 'POST' \
    'https://connect.getseam.com/spaces/create' \
    -H 'accept: application/json' \
    -H "Authorization: Bearer ${SEAM_API_KEY}" \
    -H 'Content-Type: application/json' \
    -d "{
    \"name\": \"Valley Grove - Room 104\",
    \"acs_entrance_ids\": [\"$(jq -r '.acs_entrance.acs_entrance_id' <<< ${unit_104_entrance})\"],
    \"space_key\": \"room-104-id\"
  }"
  ```

  ```python Python theme={null}
  seam.spaces.create(
    name = "Valley Grove - Room 104",
    acs_entrance_ids = [unit_104_entrance.acs_entrance_id],
    space_key = "room-104-id" # Your room ID
  )
  ```

  ```ruby Ruby theme={null}
  client.spaces.create(
    name: "Valley Grove - Room 104",
    acs_entrance_ids: [unit_104_entrance.acs_entrance_id],
    space_key: "room-104-id" # Your room ID
  )
  ```

  ```php PHP theme={null}
  $seam->spaces->create(
    name: "Valley Grove - Room 104",
    acs_entrance_ids: [$unit_104_entrance->acs_entrance_id],
    space_key: "room-104-id" // Your room ID
  );
  ```

  ```csharp C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

**Output:**

<CodeGroup>
  ```json JavaScript theme={null}
  {
    space_id: '44444444-4444-4444-4444-444444444444',
    name: 'Valley Grove - Room 104',
    space_key: 'room-104-id',
    ...
  }
  ```

  ```json cURL theme={null}
  {
    "space": {
      "space_id": "44444444-4444-4444-4444-444444444444",
      "name": "Valley Grove - Room 104",
      "space_key": "room-104-id",
      ...
    },
    "ok": true
  }
  ```

  ```json Python theme={null}
  Space(
    space_id='44444444-4444-4444-4444-444444444444',
    name='Valley Grove - Room 104',
    space_key='room-104-id',
    ...
  )
  ```

  ```json Ruby theme={null}
  <Seam::Space:0x00438
      space_id="44444444-4444-4444-4444-444444444444"
      name="Valley Grove - Room 104"
      space_key="room-104-id"
      ...
  >
  ```

  ```json PHP theme={null}
  {
    "space_id": "44444444-4444-4444-4444-444444444444",
    "name": "Valley Grove - Room 104",
    "space_key": "room-104-id",
    ...
  }
  ```

  ```json C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

***

## Associating a Seam User Identity with Your User

You can use the `user_identity_key` to link a Seam User Identity with your ID for a user, such as a hotel guest, resident, and so on.

**Code:**

<CodeGroup>
  ```javascript JavaScript theme={null}
  await seam.userIdentities.create({
    full_name: 'Jane Doe',
    user_identity_key: 'user-123-id', // Your end user ID
  })
  ```

  ```bash cURL theme={null}
  # Include your end user ID.
  curl -X 'POST' \
    'https://connect.getseam.com/user_identities/create' \
    -H 'accept: application/json' \
    -H "Authorization: Bearer ${SEAM_API_KEY}" \
    -H 'Content-Type: application/json' \
    -d '{
    "full_name": "Jane Doe",
    "user_identity_key": "user-123-id"
  }'
  ```

  ```python Python theme={null}
  seam.user_identities.create(
    full_name = "Jane Doe",
    user_identity_key = "user-123-id" # Your end user ID
  )
  ```

  ```ruby Ruby theme={null}
  client.user_identities.create(
    full_name: "Jane Doe",
    user_identity_key: "user-123-id" # Your end user ID
  )
  ```

  ```php PHP theme={null}
  $seam->user_identities->create(
    full_name: "Jane Doe",
    user_identity_key: "user-123-id" // Your end user ID
  );
  ```

  ```csharp C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

**Output:**

<CodeGroup>
  ```json JavaScript theme={null}
  {
    user_identity_id: '55555555-5555-5555-5555-555555555555',
    full_name: 'Jane Doe',
    user_identity_key: 'user-123-id',
    ...
  }
  ```

  ```json cURL theme={null}
  {
    "space": {
      "user_identity_id": "55555555-5555-5555-5555-555555555555",
      "full_name": "Jane Doe",
      "user_identity_key": "user-123-id",
      ...
    },
    "ok": true
  }
  ```

  ```json Python theme={null}
  UserIdentity(
    user_identity_id='55555555-5555-5555-5555-555555555555',
    full_name='Jane Doe',
    user_identity_key='user-123-id',
    ...
  )
  ```

  ```json Ruby theme={null}
  <Seam::UserIdentity:0x00438
      user_identity_id="55555555-5555-5555-5555-555555555555"
      full_name="Jane Doe"
      user_identity_key="user-123-id"
      ...
  >
  ```

  ```json PHP theme={null}
  {
    "user_identity_id": "55555555-5555-5555-5555-555555555555",
    "full_name": "Jane Doe",
    "user_identity_key": "user-123-id",
    ...
  }
  ```

  ```json C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

***

## **Associating a Seam Access Grant with Your Own Resource**

You can add your own booking or lease reference to a Seam Access Grant as an `access_grant_key`. Some examples of resources that you could tie to an Access Grant include a guest booking, apartment lease, or gym day pass.

**Code:**

<CodeGroup>
  ```javascript JavaScript theme={null}
  await seam.accessGrants.create({
    user_identity_id: userIdentity.user_identity_id,
    starts_at: '2025-08-13T15:00:00.000Z',
    ends_at: '2025-08-16T11:00:00.000Z',
    requested_access_methods: [{ mode: 'mobile_key' }],
    space_ids: [room104Id],
    access_grant_key: 'booking-789-id', // Your booking or lease reference
  })
  ```

  ```curl cURL theme={null}
  # Include your booking or lease reference.
  curl -X 'POST' \
    'https://connect.getseam.com/access_grants/create' \
    -H 'accept: application/json' \
    -H "Authorization: Bearer ${SEAM_API_KEY}" \
    -H 'Content-Type: application/json' \
    -d "{
      \"user_identity_id\": \"$(jq -r '.user_identity.user_identity_id' <<< ${user_identity})\",
      \"starts_at\": \"2025-08-13T15:00:00.000Z\",
      \"ends_at\": \"2025-08-16T11:00:00.000Z\",
      \"requested_access_methods\": [
        {\"mode\": \"mobile_key\"}
      ],
      \"space_ids\": [\"${room_104_id}\"],
      \"access_grant_key\": \"booking-789-id\"
  }"
  ```

  ```python Python theme={null}
  seam.access_grants.create(
    user_identity_id=user_identity.user_identity_id,
    starts_at="2025-08-13T15:00:00.000Z",
    ends_at="2025-08-16T11:00:00.000Z",
    requested_access_methods=[
      {"mode": "mobile_key"}
    ],
    space_ids=[room_104_id],
    access_grant_key="booking-789-id" # Your booking or lease reference
  )
  ```

  ```ruby Ruby theme={null}
  seam.access_grants.create(
    user_identity_id: user_identity.user_identity_id,
    starts_at: "2025-08-13T15:00:00.000Z",
    ends_at: "2025-08-16T11:00:00.000Z",
    requested_access_methods: [
      {"mode": "mobile_key"}
    ],
    space_ids: %w[ room_104_id ],
    access_grant_key: "booking-789-id" # Your booking or lease reference
  )
  ```

  ```php PHP theme={null}
  $seam->access_grants->create(
    user_identity_id: $user_identity->user_identity_id,
    starts_at: "2025-08-13T15:00:00.000Z",
    ends_at: "2025-08-16T11:00:00.000Z",
    requested_access_methods: [
      ["mode" => "mobile_key"]
    ],
    space_ids: [ room_104_id ],
    access_grant_key: "booking-789-id" // Your booking or lease reference
  );
  ```

  ```csharp C# theme={null}
  // Coming Soon!
  ```
</CodeGroup>

**Output:**

<CodeGroup>
  ```json JavaScript theme={null}
  {
    "access_grant_id": "66666666-6666-6666-6666-666666666666",
    "access_grant_key": "booking-789-id",
    "starts_at": "2025-08-13T15:00:00.000Z",
    "ends_at": "2025-08-16T11:00:00.000Z",
    "user_identity_id": "55555555-5555-5555-5555-555555555555",
    "space_ids": [ "44444444-4444-4444-4444-444444444444" ],
    "requested_access_methods": [
      {
        "display_name": "Mobile Key",
        "mode": "mobile_key",
        "created_access_method_ids": ["77777777-7777-7777-7777-777777777777"],
        ...
      }
    ],
    "instant_key_url": "https://ik.seam.co/ABCXYZ",
    ...
  }
  ```

  ```json cURL theme={null}
  {
    "access_grant": {
      "access_grant_id": "66666666-6666-6666-6666-666666666666",
      "access_grant_key": "booking-789-id",
      "starts_at": "2025-08-13T15:00:00.000Z",
      "ends_at": "2025-08-16T11:00:00.000Z",
      "user_identity_id": "55555555-5555-5555-5555-555555555555",
      "space_ids": [ "44444444-4444-4444-4444-444444444444" ],
      "requested_access_methods": [
        {
          "display_name": "Mobile Key Credential",
          "mode": "mobile_key",
          "created_access_method_ids": ["77777777-7777-7777-7777-777777777777"],
          ...
        }
      ],
      "instant_key_url": "https://ik.seam.co/ABCXYZ",
      ...
    }
  }
  ```

  ```python Python theme={null}
  AccessGrant(
    access_grant_id="66666666-6666-6666-6666-666666666666",
    access_grant_key="booking-789-id",
    starts_at="2025-08-13T15:00:00.000Z",
    ends_at="2025-08-16T11:00:00.000Z",
    user_identity_id="55555555-5555-5555-5555-555555555555",
    space_ids=[ "44444444-4444-4444-4444-444444444444" ],
    requested_access_methods=[
      {
        "display_name": "Mobile Key",
        "mode": "mobile_key",
        "created_access_method_ids": ["77777777-7777-7777-7777-777777777777"],
        ...
      }
    ],
    instant_key_url="https://ik.seam.co/ABCXYZ",
    ...
  )
  ```

  ```ruby Ruby theme={null}
  <Seam::AccessGrant:0x00438
    access_grant_id="66666666-6666-6666-6666-666666666666"
    access_grant_key="booking-789-id"
    starts_at="2025-08-13T15:00:00.000Z"
    ends_at="2025-08-16T11:00:00.000Z"
    user_identity_id="55555555-5555-5555-5555-555555555555"
    space_ids: [ "44444444-4444-4444-4444-444444444444" ]
    requested_access_methods: [
      {
        "display_name": "Mobile Key",
        "mode": "mobile_key",
        "created_access_method_ids": ["77777777-7777-7777-7777-777777777777"],
        ...
      }
    ]
    instant_key_url: "https://ik.seam.co/ABCXYZ"
    ...
  >
  ```

  ```php PHP theme={null}
  {
    "access_grant_id": "66666666-6666-6666-6666-666666666666",
    "access_grant_key": "booking-789-id",
    "starts_at": "2025-08-13T15:00:00.000Z",
    "ends_at": "2025-08-16T11:00:00.000Z",
    "user_identity_id": "55555555-5555-5555-5555-555555555555",
    "space_ids": [ "44444444-4444-4444-4444-444444444444" ],
    "requested_access_methods": [
      {
        "display_name": "Mobile Key Credential",
        "mode": "mobile_key",
        "created_access_method_ids": ["77777777-7777-7777-7777-777777777777"],
        ...
      }
    ],
    "instant_key_url": "https://ik.seam.co/ABCXYZ",
    ...
  }
  ```

  ```json C# theme={null}
  // Coming Soon!
  ```
</CodeGroup>

***

## Retrieving a Resource Using the `<resource>_key`

Once you have linked your resources to Seam resources using resource keys, you can retrieve a Seam resource using your custom unique identifier for it.

The following example retrieves a Seam Space using a `space_key`:

**Code:**

<CodeGroup>
  ```javascript JavaScript theme={null}
  await seam.spaces.get({
    space_key: 'room-104-id',
  })
  ```

  ```bash cURL theme={null}
  curl -X 'POST' \
    'https://connect.getseam.com/spaces/get' \
    -H 'accept: application/json' \
    -H "Authorization: Bearer ${SEAM_API_KEY}" \
    -H 'Content-Type: application/json' \
    -d '{
    "space_key": "room-104-id"
  }'
  ```

  ```python Python theme={null}
  seam.spaces.get(
    space_key = "room-104-id"
  )
  ```

  ```ruby Ruby theme={null}
  client.spaces.get(
    space_key: "room-104-id"
  )
  ```

  ```php PHP theme={null}
  $seam->spaces->get(
    space_key: "room-104-id"
  );
  ```

  ```csharp C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

**Output:**

<CodeGroup>
  ```json JavaScript theme={null}
  {
    space_id: '44444444-4444-4444-4444-444444444444',
    name: 'Valley Grove - Room 104',
    space_key: 'room-104-id',
    ...
  }
  ```

  ```json cURL theme={null}
  {
    "space": {
      "space_id": "44444444-4444-4444-4444-444444444444",
      "name": "Valley Grove - Room 104",
      "space_key": "room-104-id",
      ...
    },
    "ok": true
  }
  ```

  ```json Python theme={null}
  Space(
    space_id='44444444-4444-4444-4444-444444444444',
    name='Valley Grove - Room 104',
    space_key='room-104-id',
    ...
  )
  ```

  ```json Ruby theme={null}
  <Seam::Space:0x00438
      space_id="44444444-4444-4444-4444-444444444444"
      name="Valley Grove - Room 104"
      space_key="room-104-id"
      ...
  >
  ```

  ```json PHP theme={null}
  {
    "space_id": "44444444-4444-4444-4444-444444444444",
    "name": "Valley Grove - Room 104",
    "space_key": "room-104-id",
    ...
  }
  ```

  ```json C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

The following example retrieves a Seam Access Grant using an `access_grant_key`:

**Code:**

<CodeGroup>
  ```javascript JavaScript theme={null}
  await seam.accessGrants.get({
    access_grant_key: 'booking-789-id',
  })
  ```

  ```bash cURL theme={null}
  curl -X 'POST' \
    'https://connect.getseam.com/access_grants/get' \
    -H 'accept: application/json' \
    -H "Authorization: Bearer ${SEAM_API_KEY}" \
    -H 'Content-Type: application/json' \
    -d '{
    "access_grant_key": "booking-789-id"
  }'
  ```

  ```python Python theme={null}
  seam.access_grants.get(
    access_grant_key = "booking-789-id"
  )
  ```

  ```ruby Ruby theme={null}
  client.access_grants.get(
    access_grant_key: "booking-789-id"
  )
  ```

  ```php PHP theme={null}
  $seam->access_grants->get(
    access_grant_key: "booking-789-id"
  );
  ```

  ```csharp C# theme={null}
  // Coming soon!
  ```
</CodeGroup>

**Output:**

<CodeGroup>
  ```json JavaScript theme={null}
  {
    "access_grant_id": "66666666-6666-6666-6666-666666666666",
    "access_grant_key": "booking-789-id",
    "starts_at": "2025-08-13T15:00:00.000Z",
    "ends_at": "2025-08-16T11:00:00.000Z",
    "user_identity_id": "55555555-5555-5555-5555-555555555555",
    "space_ids": [ "44444444-4444-4444-4444-444444444444" ],
    "requested_access_methods": [
      {
        "display_name": "Mobile Key",
        "mode": "mobile_key",
        "created_access_method_ids": ["77777777-7777-7777-7777-777777777777"],
        ...
      }
    ],
    "instant_key_url": "https://ik.seam.co/ABCXYZ",
    ...
  }
  ```

  ```json cURL theme={null}
  {
    "access_grant": {
      "access_grant_id": "66666666-6666-6666-6666-666666666666",
      "access_grant_key": "booking-789-id",
      "starts_at": "2025-08-13T15:00:00.000Z",
      "ends_at": "2025-08-16T11:00:00.000Z",
      "user_identity_id": "55555555-5555-5555-5555-555555555555",
      "space_ids": [ "44444444-4444-4444-4444-444444444444" ],
      "requested_access_methods": [
        {
          "display_name": "Mobile Key Credential",
          "mode": "mobile_key",
          "created_access_method_ids": ["77777777-7777-7777-7777-777777777777"],
          ...
        }
      ],
      "instant_key_url": "https://ik.seam.co/ABCXYZ",
      ...
    }
  }
  ```

  ```json Python theme={null}
  AccessGrant(
    access_grant_id="66666666-6666-6666-6666-666666666666",
    access_grant_key="booking-789-id",
    starts_at="2025-08-13T15:00:00.000Z",
    ends_at="2025-08-16T11:00:00.000Z",
    user_identity_id="55555555-5555-5555-5555-555555555555",
    space_ids=[ "44444444-4444-4444-4444-444444444444" ],
    requested_access_methods=[
      {
        "display_name": "Mobile Key",
        "mode": "mobile_key",
        "created_access_method_ids": ["77777777-7777-7777-7777-777777777777"],
        ...
      }
    ],
    instant_key_url="https://ik.seam.co/ABCXYZ",
    ...
  )
  ```

  ```json Ruby theme={null}
  <Seam::AccessGrant:0x00438
    access_grant_id="66666666-6666-6666-6666-666666666666"
    access_grant_key="booking-789-id"
    starts_at="2025-08-13T15:00:00.000Z"
    ends_at="2025-08-16T11:00:00.000Z"
    user_identity_id="55555555-5555-5555-5555-555555555555"
    space_ids: [ "44444444-4444-4444-4444-444444444444" ]
    requested_access_methods: [
      {
        "display_name": "Mobile Key",
        "mode": "mobile_key",
        "created_access_method_ids": ["77777777-7777-7777-7777-777777777777"],
        ...
      }
    ]
    instant_key_url: "https://ik.seam.co/ABCXYZ"
    ...
  >
  ```

  ```json PHP theme={null}
  {
    "access_grant_id": "66666666-6666-6666-6666-666666666666",
    "access_grant_key": "booking-789-id",
    "starts_at": "2025-08-13T15:00:00.000Z",
    "ends_at": "2025-08-16T11:00:00.000Z",
    "user_identity_id": "55555555-5555-5555-5555-555555555555",
    "space_ids": [ "44444444-4444-4444-4444-444444444444" ],
    "requested_access_methods": [
      {
        "display_name": "Mobile Key Credential",
        "mode": "mobile_key",
        "created_access_method_ids": ["77777777-7777-7777-7777-777777777777"],
        ...
      }
    ],
    "instant_key_url": "https://ik.seam.co/ABCXYZ",
    ...
  }
  ```

  ```json C# theme={null}
  // Coming soon!
  ```
</CodeGroup>
