https://mobileaws.atlassian.net/browse/CLOUD-2712#6
Open
dlopezallcode wants to merge 1 commit intomainfrom
Open
https://mobileaws.atlassian.net/browse/CLOUD-2712#6dlopezallcode wants to merge 1 commit intomainfrom
dlopezallcode wants to merge 1 commit intomainfrom
Conversation
9cf51de to
40180a0
Compare
criscantillo
requested changes
Apr 20, 2026
40180a0 to
20901f6
Compare
criscantillo
approved these changes
Apr 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
The .NET SDK has been brought to complete parity with the reference Java SDK. Contact Service was added, MD5 caching in MMS with automatic image deduplication, and support for
FilesBaseUrlwith test/prod switching. The SDK compiles without errors or warnings.Implemented Changes
1.
FilesBaseUrlin config and client (src/CCAI.NET/CCAIClient.cs)Before: no
FilesBaseUrlconfiguration;GetSignedUploadUrlAsyncused hardcoded production URL.After, in
CCAIConfig:In
CCAIClient:GetFilesBaseUrl()that delegates to_config.GetFilesBaseUrl()2. New service: Contact (
src/CCAI.NET/Contact/)Files created:
Contact/ContactService.cs— service logicContact/SetDoNotTextRequest.cs— request modelContact/ContactResponse.cs— response modelMethods:
Endpoint:
PUT /account/do-not-textPayload:
{ clientId, doNotText, contactId?, phone? }—clientIdautomatically injected from client.Registered in
CCAIClientas:3. MD5 Cache in MMS (
src/CCAI.NET/SMS/MMSService.cs)Before:
SendWithImageAsync()always uploaded the image usingPath.GetFileName()as filename, without checking for duplicates.After: complete flow with MD5 hash deduplication.
New private/public methods:
SendWithImageAsync()rewritten:{clientId}/campaign/{md5}.{ext}asfileKeyCheckFileUploadedAsync(fileKey)— ifstoredUrlis not empty, skips uploadfileKeyBonus fix:
GetSignedUploadUrlAsync()now uses_client.GetFilesBaseUrl()instead of hardcoded URL"https://files.cloudcontactai.com/upload/url".New model:
src/CCAI.NET/SMS/StoredUrlResponse.cs