Skip to main content
PATCH
/
v1
/
employer-identifiers
/
{employer_identifier}
Update employer identifier
curl --request PATCH \
  --url https://api.payrollintegrationsapp.com/v1/employer-identifiers/{employer_identifier} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "displayName": "<string>",
  "identifier": "<string>"
}
'
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "displayName": "Updated 401(k) Employer Identifier Name",
  "identifier": "identifier-12345",
  "createdAt": "2024-01-15T10:30:00Z"
}
Learn more about Employer Identifiers in the Glossary.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

employer_identifier
string
required

Body

application/json
displayName
string

Display name of the employer identifier

Required string length: 1 - 200
Pattern: ^[a-zA-Z0-9\s.&,]+$
identifier
string

Identifier of the employer identifier

Required string length: 1 - 200
Pattern: ^[a-zA-Z0-9\s.&,]+$

Response

Employer identifier updated successfully

id
string<uuid>
required
displayName
string
required
identifier
string
required
createdAt
string<date-time>
required