sendSignal
MUTATION

Submits a signal representing applicant activity on your recruitment software.Caution: this is currently under development and may be changed or removed without notice.

Arguments

Name
Description
typeCode* 
String!
The type of the signal to be sent.Currently, only ApplicationComplete, ApplicationStatusUpdate and PositionStatusUpdate are supported.
candidateApplicationProfileId 
String
The identifier of the original SEEK job application.Only applicable to application status updates for Optimised Apply.
The current status of the application or position.
positionProfileIds 
[String!]
The identifiers to correlate the signal back to the SEEK job ads.Only applicable to position signals.
The previous status of the application or position.This is an optional field, and can be omitted if your software does not track this information.
token 
String
The unique tracking token.This token is generated by SEEK, and is associated with a given application. Do not re-use this field across multiple applications.Only applicable to application status updates for external applications.

Result

Name
Description
The Boolean scalar type represents true or false.

Sample

GraphQL
mutation ($input: SendSignalInput!) {
  sendSignal(input: $input)
}