Pulse API
  1. Authorization
Pulse API
  • Introduction
    • Introduction
    • Getting Started
    • Basic concepts
  • Services
    • Backoffice
      • Authentication
        • Generate Access Token
        • Generate Refresh Token
      • Authorization
        • Rotate Key (User)
          POST
        • Register Application
          POST
        • List (Application)
          GET
        • Rotate Key (Application)
          POST
        • Revoke Key (Application)
          POST
        • Activate Key (Application)
          POST
      • Usage
        • Check limits
        • Check usage
    • Domains
      • Valuation
        • Valuation
      • Indicators
        • Indicators
      • Cadastral
        • Cadastral by portal id
        • Cadastral by Reference
      • Comparables
        • Search comparables
      • Mortgage
        • Pre-approval
      • Location
        • Suggest cadastral
  1. Authorization

Register Application

POST
/api/backoffice/v1/app/create

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Successful Response
Body

🟠422Unprocessable Entity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.urbandataanalytics.com/api/backoffice/v1/app/create' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Application A",
    "description": "My web app"
}'
Response Response Example
200 - OK
{
    "message": "Verification token sent. Check your email.",
    "consumer_id": "253603a9-461c-4656-8302-3c93b5f7f616",
    "verified": false
}
Modified at 2025-11-19 09:26:34
Previous
Rotate Key (User)
Next
List (Application)
Built with