This module provides functions for retrieving performance cycle peer nomination resources in the Humaans API. Peer nominations are retrieve-only via the API.
Summary
Functions
Retrieves a specific performance_cycle_peer_nomination by ID.
Types
Functions
@spec retrieve(client :: map(), id :: String.t()) :: {:ok, Humaans.Resources.PerformanceCyclePeerNomination.t()} | {:error, Humaans.Error.t()}
Retrieves a specific performance_cycle_peer_nomination by ID.
Parameters
client- Client created withHumaans.new/1id- String ID of the performance_cycle_peer_nomination to retrieve
Examples
client = Humaans.new(access_token: "your_access_token")
{:ok, performance_cycle_peer_nomination} = Humaans.PerformanceCyclePeerNominations.retrieve(client, "performance_cycle_peer_nomination_id")