Account

Discover the account information and the account associated to a given user.

Definition

An Account represents a specific gig platform credential pair (identifier + platform) connected through Palenca for a given worker. One User can have multiple Accounts across different platforms. The account model contains relevant information such as the last time t connected successfully or warnings associated with it.


Profile Information for Gig Economy Accounts

Let's begin with a representative example of the profile information you could recover from our GET Account Endpoint:


{
  "success": true,
  "error": null,
  "data": {
    "account_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "country": "mx",
    "platform": "uber",
    "identifier": "5512345678",
    "worker_id": "UBR-DRV-00412",
    "gov_id": "LOPM850312HDFPRS19",
    "last_successful_connection": "2026-04-15T10:30:00.000000+00:00",
    "warning": null,
    "status": "success",
    "status_details": null,
    "message": null,
    "recommendation": null,
    "next_step": null,
    "created_at": "2026-03-01T08:00:00.000000+00:00"
  }
}

Let's dive into a data dictionary.

Data Section

DataDescriptionTypeExample
account_idUnique identifier of the account in Palencastringa1b2c3d4-f5f6-7890-abcd-ef1234567790
countryISO 3166-1 alpha-2 country codestringmx
platformGig platform slugstringuber
identifierCredential used to log into the platform (phone or email)string5512345678
worker_idPlatform-assigned worker identifierstring | nullUBR-DRV-00412
gov_idGovernment ID associated with the accountstring | nullLOFM300312HDFPRS09
last_successful_connectionTimestamp of the last successful loginstring | null2026-04-15T10:30:00.000000+00:00
warningWarning code if data extraction was partialstring | nullnull
statusCurrent status: success, incomplete, error, pendingstringsuccess
status_detailsSpecific sub-status codestring | nullinvalid_credentials
messageHuman-readable message explaining the current statusstring | nullnull
recommendationSuggested action to resolve an issuestring | nullnull
next_stepNext action required to proceedstring | nullnull
created_atTimestamp when the account was first created in Palencastring2026-03-01T08:00:00.000000+00:00