Skip to content

Commit d8f2ac1

Browse files
committed
ci: Format code
1 parent f033228 commit d8f2ac1

1 file changed

Lines changed: 13 additions & 6 deletions

File tree

  • docs/guides/use-cases/granting-access

docs/guides/use-cases/granting-access/README.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ With one API call, you tell Seam *who* should have access, *where*, *when*, and
1313
{% tabs %}
1414
{% tab title="JavaScript" %}
1515

16+
1617
```javascript
1718
await seam.accessGrants.create({
1819
user_identity: {
@@ -29,6 +30,7 @@ await seam.accessGrants.create({
2930

3031
{% tab title="cURL" %}
3132

33+
3234
```bash
3335
curl --include --request POST "https://connect.getseam.com/access_grants/create" \
3436
--header "Authorization: Bearer $SEAM_API_KEY" \
@@ -53,6 +55,7 @@ EOF
5355

5456
{% tab title="Python" %}
5557

58+
5659
```python
5760
seam.access_grants.create(
5861
user_identity={
@@ -69,6 +72,7 @@ seam.access_grants.create(
6972

7073
{% tab title="Ruby" %}
7174

75+
7276
```ruby
7377
seam.access_grants.create(
7478
user_identity: {
@@ -85,6 +89,7 @@ seam.access_grants.create(
8589

8690
{% tab title="PHP" %}
8791

92+
8893
```php
8994
$seam->access_grants->create(
9095
user_identity: [
@@ -101,17 +106,19 @@ $seam->access_grants->create(
101106
```
102107
{% endtab %}
103108

104-
{% tab title="Seam CLI" %}
109+
{% tab title="C#" %}
105110

106-
```bash
107-
seam access-grants create --user_identity {"full_name":"Jane Doe","email_address":"jane@example.com"} --device_ids ["6ba7b811-9dad-11d1-80b4-00c04fd430c8"] --requested_access_methods [{"mode":"code"}] --starts_at "2025-07-13T15:00:00.000Z" --ends_at "2025-07-16T11:00:00.000Z"
111+
112+
```csharp
113+
// Coming Soon!
108114
```
109115
{% endtab %}
110116

111-
{% tab title="C#" %}
117+
{% tab title="Seam CLI" %}
112118

113-
```csharp
114-
// Coming Soon!
119+
120+
```bash
121+
seam access-grants create --user_identity {"full_name":"Jane Doe","email_address":"jane@example.com"} --device_ids ["6ba7b811-9dad-11d1-80b4-00c04fd430c8"] --requested_access_methods [{"mode":"code"}] --starts_at "2025-07-13T15:00:00.000Z" --ends_at "2025-07-16T11:00:00.000Z"
115122
```
116123
{% endtab %}
117124
{% endtabs %}

0 commit comments

Comments
 (0)