get | SELECT | gist_id | |
get_revision | SELECT | gist_id, sha | |
list | SELECT | | Lists the authenticated user's gists or if called anonymously, this endpoint returns all public gists: |
list_for_user | SELECT | username | Lists public gists for the specified user: |
create | INSERT | data__files | Allows you to add a new gist with one or more files.
Note: Don't name your files "gistfile" with a numerical suffix. This is the format of the automatic naming scheme that Gist uses internally. |
delete | DELETE | gist_id | |
update | EXEC | gist_id | Allows you to update or delete a gist file and rename gist files. Files from the previous version of the gist that aren't explicitly changed during an edit are unchanged. |