Skip to content

Latest commit

 

History

History
83 lines (56 loc) · 1.38 KB

apps.md

File metadata and controls

83 lines (56 loc) · 1.38 KB

#Endpoint: Apps


Retrieves and creates Apps that use the EyeEm API. All endpoints below require an authenticated user with a native app access token.

##Available endpoints


  • /users/#{id}/apps, GET
  • /apps/id, GET
  • /users/#{id}/linkedApps, GET
  • /users/#{id}/linkedApps/#{id}, GET,DELETE

##API Calls


GET /users/{id}/apps

Gets a user's created apps

DESCRIPTION

Headers

Parameters

Response

  • 200 and an array of App objects
  • error with code and message

GET /apps/{id}

Gets the details of a specific app. Available to native clients w/out authentication.

DESCRIPTION

Headers

Parameters

Response

  • 200 and an app object
  • error with code and message

GET /users/{id}/linkedApps

Gets a user's linked apps

DESCRIPTION

Headers

Parameters

Response

  • 200 and an array of App objects
  • error with code and message

GET /users/{id}/linkedApps/{id}

Checks if a user has linked a certain app.

DESCRIPTION

Headers

Parameters

Response

  • 200 if linked
  • 400 if not linked
  • error with code and message