Skip to content

Instantly share code, notes, and snippets.

@ivancevich
Created January 9, 2019 20:44
Show Gist options
  • Save ivancevich/50f43e3368af797355fd4399617c9c19 to your computer and use it in GitHub Desktop.
Save ivancevich/50f43e3368af797355fd4399617c9c19 to your computer and use it in GitHub Desktop.
delete "/api/labels/{label_with_releases_id}/recommended-artists/{artist_id}" (contains a `bio` object of BioWithMembers)
get "/api/labels/{label_id}/subscribers" (Bio)
get "/api/labels/{label_with_releases_id}/artist-roster" (array of Bio)
get "/api/labels/{label_with_releases_id}/artist-roster/full" (array of BioWithMembers)
get "/api/labels/{label_with_releases_id}/recommended-artists" (array of Bio)
post "/api/labels/{label_id}/subscribers" (Bio)
delete "/api/users/{user_id}/artists/{artist_id}/avatar" (BioComplete)
delete "/api/users/{user_id}/artists/{artist_id}/connections" (BioComplete)
get "/api/users" (contains a `bios` array of Bio)
get "/api/users/{user_id}/artists/{artist_id}" (BioComplete)
post "/api/users/{user_id}/artists/{artist_id}/avatar" (BioComplete)
post "/api/users/{user_id}/artists/{artist_id}/connections" (BioComplete)
put "/api/users/{user_id}/artists/{artist_id}" (BioComplete)
get "/api/artists/{artist_id}" (Bio)
post "/api/artists" (BioComplete)
post "/api/artists/{artist_id}/members" (BioComplete)
post "/api/artists/{artist_id}/soundcloud" (BioComplete)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment