-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c4e04c
commit 969b43d
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ You can use the Knock management API to: | |
- Create, update, and manage your Knock workflows and the notification templates within those workflows. | ||
- Create and manage the [translations](/send-and-manage-data/translations) used by your notification templates. | ||
- Create, update and manage your [email layouts](/integrations/email/layouts). | ||
- Commit and promote changes between your Knock environments, and list commits in a given environment. | ||
- Commit and promote changes between your Knock environments. | ||
|
||
</ContentColumn> | ||
<ExampleColumn> | ||
|
@@ -2040,13 +2040,13 @@ You can retrieve all commits in a given environment, or show the details of one | |
/> | ||
</Attributes> | ||
|
||
### CommitResource Attributes | ||
### CommitResource attributes | ||
|
||
<Attributes> | ||
<Attribute | ||
name="identifier" | ||
type="string" | ||
description="The Unique identifier for the resource." | ||
description="The unique identifier for the resource." | ||
/> | ||
<Attribute | ||
name="type" | ||
|
@@ -2055,13 +2055,13 @@ You can retrieve all commits in a given environment, or show the details of one | |
/> | ||
</Attributes> | ||
|
||
### CommitAuthor Attributes | ||
### CommitAuthor attributes | ||
|
||
<Attributes> | ||
<Attribute | ||
name="email" | ||
type="string" | ||
description="The email address of the author." | ||
description="The email address of the commit author." | ||
/> | ||
<Attribute | ||
name="name" | ||
|
@@ -2112,7 +2112,7 @@ Returns a paginated list of commits in a given environment. The commits are orde | |
/> | ||
<Attribute | ||
name="[no-]promoted" | ||
type="string" | ||
type="boolean" | ||
description="Whether to show only promoted or unpromoted changes between the given environment and the subsequent environment." | ||
/> | ||
<Attribute | ||
|
@@ -2342,7 +2342,7 @@ A promoted commit. | |
"email": "[email protected]", | ||
"name": "Franklin Sierra" | ||
}, | ||
"environment": "development" | ||
"environment": "staging" | ||
} | ||
} | ||
``` | ||
|