Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/SendTokenResponse.md
2025-05-07 14:37:48 +00:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-send-token-response SendTokenResponse SendTokenResponse SendTokenResponse powershellsdk
powershell
PowerShell
sdk
SendTokenResponse
BetaSendTokenResponse
/tools/sdk/powershell/beta/models/send-token-response
SDK
Software Development Kit
SendTokenResponse
BetaSendTokenResponse

SendTokenResponse

Properties

Name Type Description Notes
RequestId String The token request ID [optional]
Status Enum [ "SUCCESS", "FAILED" ] Status of sending token [optional]
ErrorMessage String Error messages from token send request [optional]

Examples

  • Prepare the resource
$SendTokenResponse = Initialize-BetaSendTokenResponse  -RequestId 089899f13a8f4da7824996191587bab9 `
 -Status SUCCESS `
 -ErrorMessage Unable to sent text message
  • Convert the resource to JSON
$SendTokenResponse | ConvertTo-JSON

[Back to top]