Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Solution ID #68

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,18 @@ Perform a credit request. The application will receive delegate call back for s
Perform an unlinked credit request without using the UIButton call
back mechanism. The application will receive delegate call back for successful, failed, and canceled transaction flows by setting the `UIViewController` with the `setDelegate` call of `AuthNet` class.

A Solution ID is a soution for Authorize.Net's partners to identify the application creating a transaction for every merchant using your software regardless of who sold the application, gateway or merchant account. For more information, see the [Solution ID Implementation Guide](https://developer.authorize.net/api/solution_id/).

To include a Solution ID with your API requests, set your class as a delegate of the `ANetSolution`class,
implement `netSolutionDelegate`, and return the Solution ID as shown below.

```
- (NSString *)anetSolutionID {

Return “SOLUTION_ID”;
```

Replace `SOLUTION_ID` with your Solution ID.

## Customer Email Receipt

Expand Down