Skip to main content
POST
/
v1
/
employer-identifiers
/
employer-aliases
/
resolve
Resolve employer aliases
curl --request POST \
  --url https://api.payrollintegrationsapp.com/v1/employer-identifiers/employer-aliases/resolve \
  --header 'Content-Type: application/json' \
  --data '
{
  "aliases": [
    {
      "type": "IDENTIFIER",
      "value": "ACME12345"
    },
    {
      "type": "IDENTIFIER",
      "value": "ACME67890"
    }
  ]
}
'
{
  "data": [
    {
      "alias": {
        "type": "IDENTIFIER",
        "value": "ACME12345"
      },
      "employerIdentifier": "01936a3f-0001-4000-8000-000000000001"
    },
    {
      "alias": {
        "type": "IDENTIFIER",
        "value": "ACME67890"
      },
      "employerIdentifier": null
    }
  ]
}

Body

application/json

Contains a list of employer company identifiers to match to their corresponding UUIDs

The body is of type any.

Response

Resolved employer identifier mappings for each provided identifier, returns null if no match is found