Office URL Callback

From docs
Revision as of 15:02, 21 July 2026 by Ashley DeBon (talk | contribs) (Created page with "== Office OAuth Callback == === Base URL === https://apimobile.callproof.com === Endpoint === /api/office/callback/ === Purpose === OAuth callback endpoint for Office login...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Office OAuth Callback

Base URL

https://apimobile.callproof.com

Endpoint

/api/office/callback/

Purpose

OAuth callback endpoint for Office login/authorization flows. Accepts the callback query parameters returned by the provider and echoes them back in the response body. No authentication or additional processing is performed by this endpoint.

HTTP Method

GET

Headers

Header Required Description
Authorization No Not required for this endpoint

Security

  • No – This endpoint is publicly accessible (outside the authenticated API middleware group).

Parameters

Path Parameters

None.

Query Parameters

Parameter Type Required Description
(any) string No All received query parameters are accepted and returned as-is (typically OAuth fields such as code, state, or error, depending on the provider response)

Request Body

None.

Successful Response (200)

Returns the received callback parameters wrapped in a data object.

Field Type Description
data object Key/value map of all request parameters received by the callback

Error Responses

Status Code Meaning
(none specified) This endpoint does not define explicit error handling; it returns the received parameters as JSON
  • No authentication, validation, or business-rule error responses are implemented for this callback in the codebase.