Skip to content

Commit

Permalink
use a better external id as example
Browse files Browse the repository at this point in the history
  • Loading branch information
preslavmihaylov committed Apr 26, 2024
1 parent 27f5d5d commit 253185f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _snippets/graphql/add-members-to-tier.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ mutation addMembersToTier($input: AddMembersToTierInput!) {
"companyId": "co_123"
}
],
"tierIdentifier": { "externalId": "tier_123" }
"tierIdentifier": { "externalId": "XXX" }
}
}
```
2 changes: 1 addition & 1 deletion _snippets/typescript-sdk/add-members-to-tier.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const res = await client.addMembersToTier({
companyId: 'co_123',
},
],
tierIdentifier: { externalId: 'tier_123' },
tierIdentifier: { externalId: 'XXX' },
});

if (res.error) {
Expand Down

0 comments on commit 253185f

Please sign in to comment.